Google News
logo
C-Language - Interview Questions
What is a pointer on pointer ?
It’s a pointer variable which can hold the address of another pointer variable. It de-refers twice to point to the data held by the designated pointer variable.

Ex : int x = 5, *p=&x, **q=&p;
Therefore ‘x’ can be accessed by **q.
Advertisement