Answer:void function();
int main()
{
try
{
function();
}
catch (char)
{
cout<<"Caught a Char<<endl";
}
return 0;
}
void function()
{
throw 2;
}
}
Options
a) Error in execution
b) Caught a Char
c) Abort() function is invoked
d) None of the above
Answer : c) Abort() function is invoked