1 #include <stdio.h> 2 int main() 3 { 4 printf ("Hello 1\n"); 5 try { 6 throw 20; 7 } catch(...) { 8 printf ("catch\n"); 9 } 10 printf ("Hello 2\n"); 11 return 0; 12 } 13