What are the exception in c++ and how they are used in program | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What are the exception in c++ and how they are used in program

All About exception handling, and where it used in program

30th Dec 2018, 3:13 PM
kapil mewada
kapil mewada - avatar
2 Answers
+ 5
C++ Exception Handling. An exception is a problem that arises during the execution of a program. A C++ exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to divide by zero
30th Dec 2018, 3:18 PM
kapil mewada
kapil mewada - avatar
+ 2
Exception occur when something goes wrong, due to incorrect code or input. When an exception occurs, the program immediately stops. Different exceptions are raised for different reasons. To handle exception c++ has a feature called try catch. try { //code that might causes an exception } catch(...) { // code to handle exception }
9th Jan 2019, 9:42 AM
Md. Tanvir Ahmed
Md. Tanvir Ahmed - avatar