Answers

Question and Answer:

  Home  C Programming

⟩ 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.

 189 views

More Questions for you: