Vidyalelo
C Programming · Q14

C Fundamentals

Programming · C Programming · question 14

Q14

Which operator is used to access the value stored at a pointer address in C?

A.
*
Answer
B.
&
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.