fork download
  1. #include <iostream>
  2. #include <setjmp.h>
  3.  
  4. static jmp_buf buf;
  5.  
  6. float funcB()
  7. {
  8. setjmp(buf);
  9. return 1.6f;
  10. }
  11.  
  12. int funcA()
  13. {
  14. longjmp(buf,5);
  15. std::cout<<"b";
  16. return 2;
  17. }
  18.  
  19. int main()
  20. {
  21. funcB();
  22. std::cout<<funcA();
  23. return 0;
  24. }
Runtime error #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty