int *w;
int **d;
d = &w;
What does the **d store exactly?
After the assignment, **d
is the same as *w
. d
is a pointer to a pointer to an integer; the pointer to an integer that it points to is w
. So *d
is w
, and **d
is *w
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With