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