Question: What does the following declaration signify? int (*pf)(); pf is a pointer to a function. pf is a function pointer. pf is a pointer

What does the following declaration signify? int (*pf)(); pf is a pointer to a function. pf is a function pointer. pf is a pointer to a function which returns 'int'. pf is a function of a pointer variable.
Step by Step Solution
3.48 Rating (151 Votes )
There are 3 Steps involved in it
Answer pf is a pointer to a function which returns int Explanation A function pointer is a pointer that points to a function It is declared similarly ... View full answer
Get step-by-step solutions from verified subject matter experts
