Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What is the meaning of the following declaration?
int(*p[5])();

What is the meaning of the following declaration?
int(*p[5])();
a) p is pointer to function
b) p is array of pointer to function
c) p is pointer to such function which return type is the array
d) p is pointer to array of function

Answer: b
Explanation: In the above declaration the variable p is the array, not the pointer.

Join The Discussion