12 lines
181 B
C++
12 lines
181 B
C++
#include <stdio.h>
|
|
int main()
|
|
{
|
|
printf ("Hello 1\n");
|
|
try {
|
|
throw 20;
|
|
} catch(...) {
|
|
printf ("catch\n");
|
|
}
|
|
printf ("Hello 2\n");
|
|
return 0;
|
|
}
|