/* simple one-file C program */ #include main() { printf("Main here\n"); int i=0, j, k; j=i+55; i=j+2; k=i+j; printf("Main done\n"); }