Operator Description
& returns a pointer that represents the memory address of the variable.
* to declare a variable to be a pointer of some type,
and to dereference the pointer value to get to the value of the variable pointed to by the pointer.
-> dereferencing and member access operator.