Pointer C Tutorial

Pointers are used manipulate the computer's memory.
Pointers are declared by using the asterisk(*).
The following line declares an integer pointer, s:

int *s;
The ampersand & is used to get the address.