(defun indent-or-complete ()
"Complete if point is at end of a word, otherwise indent line."
(interactive)
(if (looking-at "\\>")
(dabbrev-expand nil)
(indent-for-tab-command)
))
(add-hook 'c-mode-common-hook
(function (lambda ()
(local-set-key (kbd "") 'indent-or-complete)
)))