CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C++ Quiz #42

Code After throw Is Skipped

easyExceptions

What is the output of this code?

📄 Code

1#include <iostream>
2#include <stdexcept>
3using namespace std;
4 
5int main() {
6 try {
7 throw runtime_error("Oops!");
8 cout << "After throw" << endl;
9 } catch (const runtime_error& e) {
10 cout << e.what() << endl;
11 }
12 return 0;
13}