Home » C Programming » Pointers » Question
  1. What makes the following declaration denote?
    int **p;
    1. p is a pointer to an int pointer
    2. p is a pointer to pointer to type int
    3. p is a function pointer that returns pointer to int type
    4. All of above
    5. None of these
Correct Option: A

p is a pointer to an int pointer



Your comments will be displayed only after manual approval.