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(*ptr[5])();

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

Answer: b
Explanation: In this expression, ptr is array not pointer.

Join The Discussion