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

In this expression, p is array not pointer.



Your comments will be displayed only after manual approval.