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

The statement int * p ; can be interpreted as

  1. the variable whose address is stored in p is an integer
  2. the variable pointed to by p is an integer
  3. p points to an integer
  4. All the above



Answer: 
Option d: All the above

Explanation Here

Post a Comment

0 Comments