C++ MQCs with Explanation (CHAPTER : POINTERS, VIRTUAL FUNCTIONS AND POLYMORPHISM )

For the statement p = *m; which of the following statements is TRUE?

  1. Address of m is assigned to p
  2. The value of m is assigned to p
  3. The value of the variable pointed to by m is assigned to p
  4. p is a pointer variable



Answer: 
Option a: Address of m is assigned to p

Explanation Here

Post a Comment

0 Comments