Multiple choice technology programming languages

Which symbol is used to reference a pointer in C

  1. *

  2. ^

  3. &

  4. @

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The correct answer is C (&) - the address-of operator. The question asks how to reference a pointer, which means getting the memory address of a variable. The & operator is used to get a variable's address. Option A (*) is the dereference operator (accesses value at address), not for getting the address itself.