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

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online C Programming Job Interview Questions And Answers