Getting an Address & is the address operator It returns a pointer to the object In other words the object's address Read it in English as "the address of" Eg: int i = 42; int *p = &i; "Place the address of i into p" "Make p point to i"