How do I make turbo c++ full screen?
No Answer is Posted For this Question
Be the First to Post Answer
What should main() return in c and 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 a container class? What are the types of container classes in c++?
What do you mean by global variables?
can output 5 students using one dimensional array
When do we use copy constructors?
What is time h in c++?
What is runtime polymorphism in c++?
What is lambda in c++?
the first character in the variable name must be an a) special symbol b) number c) alphabet
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Can inline functions have a recursion? Give the reason?