What size is allocated to the union variable?
Copy Linked List using recursive function?
in C++ , the word plus plus who found this?
Which c++ operator cannot overload?
What is the main purpose of overloading operators?
What are the different types of variables in C++?
What is a multimap c++?
What do you mean by function pointer?
Is c++ high level programming language?
Explain the register storage classes in c++.
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
What is the benefit of encapsulation?
What are the various arithmetic operators in c++?