Quine by inaniwa(cheat)

#include<stdio.h>
s[];
main(){
FILE*p=fopen("test.c","r");
for(;~fscanf(p,"%s",s);)
printf("%s\n",s);
fclose(p);
}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page