Home » C++ Programming » Arrays » Question
  1. What is the meaning of the following declaration?
    int(*p[5])();
    1. p is pointer to array of function
    2. p is pointer to function
    3. p is array of pointer to function
    4. p is pointer to such function which return type is the array
    5. None of these
Correct Option: C

In the above declaration the variable p is the array, not the pointer.



Your comments will be displayed only after manual approval.