pointer to pointer
pointer to pointer is nothing but one pointer is holding anther pointers memory location.
declaration of pointer to pointer
data_type ** pptr;
initilization of pointer to pointer
pptr = &ptr;
accessing value of pointer to pointer
**pptr;
Example: