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