What is jump statement in C++?
No Answer is Posted For this Question
Be the First to Post Answer
How do I run c++?
How to detect memory leaks in c++
What is the auto keyword good for in c++?
5. Can inline functions have a recursion?
Do class method definitions?
I need to find a specific string between two strings how do I do it?
How compile and run c++ program in turbo c++?
What is the basic of c++?
What are the advantages of using typedef in a program?
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 difference between n and endl in c++?
Differentiate between declaration and definition.