Differentiate between a template class and class template in c++?
What operators can you overload in c++?
how to create window program in c++.please explain.
What methods can be overridden in java?
What is the use of typedef?
Why namespace is used in c++?
Can a program run without main?
Why are pointers not used in c++?
Can we overload operator 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.
Explain rtti.
What do you mean by internal linking and external linking in c++?
What do you mean by inheritance in c++?