What is stack unwinding?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between #import and #include?
When should we use multiple inheritance?
What is a custom exception?
What is c++ programming language?
What is your strongest programming language (Java, ASP, C, C++, VB, HTML,C#, etc.)?
24 Answers Infosys, Microsoft, TCS,
What is the use of seekg in c++?
What is a namespace in c++?
Are strings immutable in c++?
How can you tell what shell you are running on unix system?
Is there finally in c++?
What is the advantage of an external iterator.
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 == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?