Define a pointer
int* p;
example:
int* pi, i; i = 123; // pi = &i; // pi stores the address of i and it is a pointer printf("%d", *pi); // Get the value of the address pointed by the pointer