Why c++ is better than c language?
No Answer is Posted For this Question
Be the First to Post Answer
Mention the purpose of istream class?
What is the difference between new/delete and malloc/free?
What is the outcome of cout< a) 16 b) 17 c) 16.5
Write is a binary search tree? Write an algo and tell complexity?
Define precondition and post-condition to a member function?
When volatile can be used?
What is the size of integer variable?
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 reference variable in c++?
When we use Abstract Class and when we use Interface?where we will implement in real time?
How do you clear a map in c++?
How should runtime errors be handled in c++?