Q5
What is the correct way to declare a function in C that takes no arguments and returns an integer?
A.
int func();
B.
func(int);
C.
func();
AnswerD.
int func(int);
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board