What are the different types of comments allowed in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is an adjust field format flag?
Explain how an exception handler is defined and invoked in a Program.
What information can an exception contain?
What problems might the following macro bring to the application?
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 the use of virtual destructor?
What is a v-table?
please help to write the code of chess game in c++??????????
Do you know what are static and dynamic type checking?
what is the use of void main() in C++ language?
What are inline functions?
How can you create a virtual copy constructor?