What is fflush c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a unnitialised pointer?
Difference between Abstraction and encapsulation in C++?
Keyword mean in declaration?
What are the main characteristics of C++ as a programming language?
What are advantages of C++ when comparing with C?
18 Answers HP, iGate, TCS,
How do you clear a set in 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 namespace & why it is used in c++?
What does it mean to declare a destructor as static?
How much do coding jobs pay?
5. Can inline functions have a recursion?
When should we use multiple inheritance?