Pointer Point to Pointer?

Is this the correct format to point a pointer (pointer1) to another pointer (pointer2)?
&pointer1 = &pointer2
Im kinda rusty when it comes to pointers :P
no, you cant have the & on the left hand side.

if the pointers are of the same type you can just assign them.
p1 = p2;
Thanks!
Topic archived. No new replies allowed.