First page Back Continue Last page Graphics
POINTERS
A pointer is a value that represents the address of an object.
X is an object.
&X is the address of the object.
If P is the address of an object.
*P is the object itself.
& = address operator
* = dereference operator