#include #include #include int main(){ FILE *fp = fopen("p.c", "w"); fputs("extern void catch();void main(){catch();}", fp); fclose(fp); system("gcc p.c catch.o -o p; ./p"); return 0; }