Hi I have a question about double pointers. For example in this code:
int a, b=2;
int *iPtr1, **iPtr2;
iPtr1 = &a;
iPtr2 = &iPtr1;
*iPtr1 = b+3;
*iPtr2 = iPtr1;
On the last line *iPtr2 = iPtr1;
It that just telling iPtr1
to point back to itself since dereferencing a double pointer just once is like using iPtr1
?