Home » C++ Programming » References » Question
  1. What does the dereference operator will return?
    1. lvalue equivalent to the value at the pointer address
    2. it will return nothing
    3. rvalue equivalent to the value at the pointer address
    4. All of above
    5. None of these
Correct Option: C

It operates on a pointer variable, and returns an l-value equivalent to the value at the pointer address.



Your comments will be displayed only after manual approval.