Q. Which of the following will correctly declare a function in C?
β
Correct Answer: (B)
int foo();
Explanation: int foo(); is a valid function declaration in C.