C++ Exception Handling
An exception is an event or an error that arises during the execution of a program i.e. during run–time. The occurrence of an exception in a program disrupts the normal flow of instructions. So to handle such errors, we use exception handlers. If we do not handle the exception properly then the program may terminate. … Read more