Question:medium

Choose the indirection or value at operator used in C++ from the options given below.

Show Hint

In C++, the asterisk (*) is used to dereference a pointer, while the ampersand (&) is used to obtain the address of a variable.
  • ++
  • *
  • &
  • +
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0