Computer Science, asked by leoHarshit6235, 1 year ago

What is exception? Write a program to demonstrate the use of try catch block to handle exception in c++

Answers

Answered by KameenaYaar01
1

Answer:

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. Exceptions provide a way to transfer control from one part of a program to another.

Similar questions