fork download
  1. #include <iostream>
  2. #include <exception>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. try {
  8. throw 2./4;
  9. }
  10. catch(int i) {
  11. cout << i;
  12. }
  13. return 0;
  14. }
Runtime error #stdin #stdout #stderr 0s 16048KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
terminate called after throwing an instance of 'double'