fork(2) download
  1. #include <iostream>
  2.  
  3. int func(int a) try {
  4. throw(2 * a);
  5. } catch(int _a) {
  6. return _a - 3;
  7. }
  8.  
  9. int main() {
  10. std::cout << func(14) << std::endl;
  11. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
25