Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C++ | Exception Handling | Question 5

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article




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

(A)

default exception
After Exception

(B)

int exception
After Exception

(C)

int exception

(D)

default exception


Answer: (A)

Explanation: The block catch(…) is used for catch all, when a data type of a thrown exception doesn’t match with any other catch block, the code inside catch(…) is executed.

Note that the implicit type conversion doesn’t happen when exceptions are caught. The character ‘a’ is not automatically converted to int.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads