What do you mean by stack unwinding in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Why do C++ compilers need name mangling?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
Explain queue. How it can be implemented?
Is it possible to have a recursive inline function in c++?
When does a 'this' pointer get created?
What is the use of volatile keyword in c++? Give an example.
what are function pointers?
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 can a struct in c++ differs from a struct in c?
What are the two shift operators and what are their functions?
What's the order in which the objects in an array are destructed?
Is the declaration of a class its interface or its implementation?