Login
Remember
Register
Ask a Question
Which operator is used to access the value stored in a variable pointed to by a pointer in C Language?
0
votes
asked
May 23, 2024
in
C Plus Plus
by
rajeshsharma
Which operator is used to access the value stored in a variable pointed to by a pointer in C Language?
A) *
B) &
C) $
D) %
pointer
in
c
language
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 23, 2024
by
rajeshsharma
Answer: A
Explanation: The * operator is used to access the value stored in a variable pointed to by a pointer in C Language. It is called the dereference operator.
...