Computer Science, asked by mitalikumari4136, 1 year ago

Exception handling in c++ is made up of ............... and ................ Keywords. Fill in the blank

Answers

Answered by suman88593
0
AT and T Bell Laboratories
Answered by smartbrainz
0

Exception handling in c++ is made up of catch, try, and throw.

Explanation:  

The exception handling in C++ programming is made of three keywords. They are explained below:

  • Try: This is a particular keyword which enclosed in curly braces.
  • Throw: This particular keyword throws an exception at the time when an issue is detected that is finished by using this particular keyword.
  • Catch: A program mostly catches an exception with the help of an exception handler wherein the programmers' needs to handle the anomaly.  

 

Similar questions