Q. Which of the following is a correct declaration of a function pointer?
β
Correct Answer: (B)
int (*f)();
Explanation: int (*f)(); declares a pointer to a function returning int.