What do you mean by Stack unwinding?
Answer / harendra pal
It is a process during exception handling when the destructor is called for all local objects between the place where the exception was thrown and where it is caught.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the weaknesses of C++?
What is c++ array?
What is function overriding in c++?
What is exception handling? Does c++ support exception handling?
How do you invoke a base member function from a derived class in which you have not overridden that function?
What is the difference between static link library and dynamic link library?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
What is the function to call to turn an ascii string into a long?
Why is c++ a mid-level programming language?
How the V-Table mechanism works?
How many types of comments are there in c++?
const char * char * const What is the differnce between the above two?