how to declare a pointer to pointer and use it
Anonymous
there are many ways. For example: int x = 10; int *p = &x; //pointer to x int **y = &p; //pointer to pointer to x int z = **y; // same as z=x;
Check out your Company Bowl for anonymous work chats.