Can we use resume in error handling i.e. in the catch block
Answers were Sorted based on User's Feedback
Answer / mms zubeir
I believe the question is not properly formed, am I right?
The question could be: Can we resume the execution from
where the exception is thrown?
The answer can be Yes** and No*.
* - By using C++ try/catch mechanism we cannot resume back
because of the stack unwinding happens.
** - By using structured exception handling of Win32, we
can resume.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / s.murali krishnan
No.
The Exception can only handled using the catch block
the error CANNOT be handled.
| Is This Answer Correct ? | 1 Yes | 0 No |
a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?
What are guid?
What is #include iostream in c++?
What do you mean by abstraction. Explain your answer?
What is the benefit of encapsulation?
List the features of oops in c++?
Where do I find the current c or c++ standard documents?
What is a set in c++?
What are the debugging methods you use when came across a problem?
What is the difference between struct and class?
Show the declaration for a pointer to function returning long and taking an integer parameter.
What is realloc() and free()? What is difference between them?