1.

#include <iostream>using namespace std;int main () {    try    {        throw 10;    }    catch (int LFC)    {        cout << "An exception occurred " << LFC << endl;    }    return 0;}
16.What will be the output of this program?

A. Exception
B. Error
C. My exception
D. runtime error
Answer» D. runtime error


Discussion

No Comment Found

Related MCQs