What do the following declaration signify?
int (*pf)();
a. pf is a pointer to function.
b. pf is a function pointer.
c. pf is a pointer to a function which return int
d. pf is a function of pointer variable.
ANSWER: pf is a pointer to a function which return int
Post a Comment