Q. What is the purpose of ‘p’ in the following statement?
Code:
int (*p[3]) ();
β
Correct Answer: (C)
p is an array of pointers to a function
int (*p[3]) ();
You must be Logged in to update hint/solution