What is a pointer on pointer?

C Programming Language >   Pointer in C Language >   Pointer in C  

Short Question

842


Answer:

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.

Eg: int x = 5, *p=&x, **q=&p;


Therefore ‘x’ can be accessed by **q.


This Particular section is dedicated to Question & Answer only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.




Join Our telegram group to ask Questions

Click below button to join our groups.