Interview Questions

Why isnt my procedure call working? The compiler seems to skip right over it

C Interview Questions and Answers


(Continued from previous question...)

Why isnt my procedure call working? The compiler seems to skip right over it

Does the code look like this?
myprocedure;
C has only functions, and function calls always require parenthesized argument lists, even if empty. Use
myprocedure();
Without the parentheses, the reference to the function name simply generates a pointer to the function, which is then discarded.

(Continued on next question...)

Other Interview Questions