Which operator is used to access the value stored at a pointer address in C?
A. *
B. &
C. ->
D. .
Answer: Option A
Solution (By Examveda Team)
The operator used to access the value stored at a pointer address in C is Option A:*
. The asterisk () operator is known as the "dereference" operator, and it is used to retrieve the value that a pointer is pointing to.
Join The Discussion