Computer Science, asked by monihr6, 2 months ago

#include <iostream>
using namespace std;
int main()
{ try
{
throw 'b';
}
catch (int param)
{
cout << "Int Exception";
}
catch (...)
{
cout << "Default Exception":
}
cout << "After Exception";
return 0;
}
O A. Int Exception After Exception
B. Default Exception
C. Default Exception After Exception
D. Int Exception
Reset Selection​

Answers

Answered by nikhil8366
0

Answer:

I donot know this answer

Similar questions