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 is an iterator?
What can I use instead of namespace std?
What is function prototyping?
Can we make copy constructor private in c++?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
What is the difference between while and do while loop?
Write about the access privileges in c++ and also mention about its default access level?
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
What is conversion constructor?
What are register variables?
What do c++ programmers do?
What is stoi in c++?