Q. Which of the following will correctly declare a function in C? (A) function int foo(); (B) int foo(); (C) declare foo(); (D) func foo() int; ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) int foo(); Explanation: int foo(); is a valid function declaration in C.