✏️ Explanatory Question

What is a pointer on pointer?

👁 853 Views
📘 Detailed Answer
💡

Answer with Explanation

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.