What is a terminating character in c++?
No Answer is Posted For this Question
Be the First to Post Answer
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.
Which bitwise operator is used to check whether a particular bit is on or off?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
What are the various compound assignment operators in c++?
What will happen if when say delete this ?
Why is "using namespace std;" considered bad practice?
what is the C++
Can inline functions have a recursion? Give the reason?
Explain the scope resolution operator?
How one would use switch in a program?
write a program that takes two numbers from user that prints the smallest number
List down the guideline that should be followed while using friend function.