What does it mean to declare a destructor as static?
No Answer is Posted For this Question
Be the First to Post Answer
What is an adaptor class or wrapper class in c++?
Differentiate between the message and method?
What is the difference between map and hashmap in c++?
State the difference between pre and post increment/decrement operations.
Can circle be called an ellipse?
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 the oldest programming language?
What is the full form of ios?
What is a dangling pointer in c++?
What is iomanip c++?
What do you know about friend class and friend function?
What is a volatile variable in c++?