Open In App
Related Articles

C++ | Exception Handling | Question 11

Improve Article
Improve
Save Article
Save
Like Article
Like

What happens in C++ when an exception is thrown and not caught anywhere like following program.




#include <iostream>
using namespace std;
  
int fun() throw (int)
{
    throw 10;
}
  
int main() {
  
  fun();
  
  return 0;
}
  


(A) Compiler error
(B) Abnormal program termination
(C) Program doesn’t print anything and terminates normally
(D) None of the above


Answer: (B)

Explanation: When an exception is thrown and not caught, the program terminates abnormally.

Quiz of this Question

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Similar Reads