Pointers
The address-of operator & takes the address of an object.
&
int target = 20; // Sets p to the address of target. int *p = ⌖
Note that the ampersand & is also used to declare a reference.
p
n
int *p = &n;