Report Bug
Qus : Which of the following correctly declares a function in C?
QusWhich of the following correctly declares a function in C?

A. int func();
B. func() int;
C. function int func();
D. declare int func();


Solution
A. int func();






Report Bug