98
C++ try/catch
In C++ programming, exception handling is performed using try/catch statement. The C++ try block is used to place the code that may occur exception. The catch block is used to handle the exception.
C++ example without try/catch
Output:
Floating point exception (core dumped)
C++ try/catch example
Output:
Attempted to divide by zero!
Next TopicC++ User-Defined Exceptions