Referencing operator ('&')

Unary operators Next

In the expression

& expr
which means "take the address of the expr", the expr operand must be one of the following: If the operand is of type type, the result is of type "pointer to type".

The '&' symbol is also used in C as a binary bitwise AND operator.