What is the best c c++ compiler for windows?
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 an opaque pointer?
In a class only declaration of the function is there but defintion is not there then what is that function?
What is the purpose of template?
What does it mean to declare a member function as static?
What are the strengths of C++?
Describe the setting up of my member functions to avoid overriding by the derived class?
Why are arrays usually processed with for loop?
How is c++ different from java?
What is constant in c++ with example?
Write about c++ storage classes?
Describe private, protected and public?