Which symbol is used to reference a pointer in C
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.