Some questions on pointers
Which are int variables and which are pointers to ints in the following declaration?
int * a, b, c, *d;
Which variable does ip1 point to at the end of the following code?
int i, j, *ip1, *ip2; ip1 = &i; ip2 = &j; ip1 = ip2;
Answers to these questions
.
Back to notes on pointers
.