Source code for the output same as source code

#include <stdio.h>
int main()
{
FILE *fp;
char ch;

fp = fopen (__FILE_,"r") ;
do
{
ch= getc(fp);
putchar(ch);
}
while (ch != EOF);
fclose(fp);
return 0 ;
 }

Posted on by