Which of these are true about the &
operator?
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.