98.2k views
3 votes
Which header provides functions that deal with exceptional conditions?

1 Answer

2 votes

Answer:

<exception> header provides functions for exception handling in c++.

Step-by-step explanation:

Exceptions gives a way to respond to exceptional conditions (like runtime errors) in codes by transferring the control to other special functions called handlers. Since try,catch and throw can work in the iostream header file.To use more functions like unexpected,current_exception,rethrow_exception we need exception header file.

User Zhiyong
by
7.9k points

No related questions found