what is VOID?
No Answer is Posted For this Question
Be the First to Post Answer
Describe protected access specifiers?
When should we use multiple inheritance?
Does dev c++ support c++ 11?
How do I run 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 a constructor and how is it called?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
What is difference between class and function?
what is data encapsulation in C++?
difference between the c++ and c languages
How is modularity introduced in C++?
What is helper in c++?