Here it comes Code: void main() { FILE *fp; char ch; fp = fopen(__FILE__,"r"); while((ch=fgetc(fp))!=EOF) { printf("%c",ch); } fclose(fp); }