Open In App

C++ | Exception Handling | Question 6

Like Article
Like
Save
Share
Report




#include <iostream>
using namespace std;
  
int main()
{
    try
    {
       throw 10;
    }
    catch (...)
    {
        cout << "default exception\n";
    }
    catch (int param)
    {
        cout << "int exception\n";
    }
  
    return 0;
}


(A) default exception
(B) int exception
(C) Compiler Error


Answer: (C)

Explanation: It is compiler error to put catch all block before any other catch. The catch(…) must be the last catch block.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads