InterviewSolution
Saved Bookmarks
| 1. |
What Do You Mean By Stack Unwinding In C++? |
|
Answer» Stack unwinding in C++ 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. Stack unwinding in C++ 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. |
|