What is the exit function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are function prototypes?
Why iomanip is used in c++?
When must you use a pointer rather than a reference?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
What is stack unwinding?
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.
How many storage classes are available in C++?
What is the best way to declare and define global variables?
Does a derived class inherit or doesn't inherit?
What are advantages of c++?
Is c++ an oop?
What is the need of a destructor? Explain with the help of an example.