Dereferencing Operator
Learn how to get the value pointed out by the pointer.
We'll cover the following...
Indirection/dereferencing operator
Consider the example given in the previous lesson. John's storage house is pointing to Alice's storage house, so John is a pointer here. What if John wanted to know what value is stored ...
Ask