print file by tabasa

#include <stdio.h>\x0d
main(){char d,f[50];FILE *p;gets(f);p=fopen(f,"r");while((d=fgetc(p))!=EOF)putchar(d);}

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

download

return to the top page