Q14
Which operator is used to access the value stored at a pointer address in C?
A.
*
AnswerB.
&
C.
->
D.
.
Answer: Option A
Solution
Answer: Option A
Solution:
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.