First page Back Continue Last page Graphics
Pointers
A few words on dynamic memory and the run time memory manager.
A pointer variable is simply a variable that stores an address.
Normally it's the address of another variable.
int x; // normal integer variable called x.
int * x_ptr; // pointer variable called x_ptr which points to an integer. What it points two is undefined after the above.