1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <stdio.h> int main() { int a = 3; try { if (a < 5) throw "error"; } catch (...) { printf ("captured\n"); } return 0; } |
I2luY2x1ZGUgPHN0ZGlvLmg+CmludCBtYWluKCkKewogIGludCBhID0gMzsKCiAgdHJ5CiAgewogICAgaWYgKGEgPCA1KQogICAgICB0aHJvdyAiZXJyb3IiOwogIH0KICBjYXRjaCAoLi4uKQogIHsKICAgIHByaW50ZiAoImNhcHR1cmVkXG4iKTsKICB9CgogIHJldHVybiAwOwp9
-
upload with new input
-
result: Success time: 0.02s memory: 2812 kB returned value: 0
captured


