What happens if exceptions are not handled?
When an exception occurred, if you don’t handle it, the program terminates abruptly and the code past the line that caused the exception will not get executed. What will happen if an exception is not handled in C++? Explanation: As the func() is throwing a const char* string but we the catch block is not catching any const char* exception …