Which of these are true about the & operator?

It is called the address-of operatorIt allows us to see the memory address location of a variableIt is called the dereference operatorIt will return the value at a memory address location

Good job! & is the address-of operator and shows the memory address of a variable.

Not to be confused with the * dereference operator which will return the value at a memory address.

Drat. & is the address-of operator and shows the memory address of a variable.

Not to be confused with the *dereference operator which will return the value at a memory address.