programming-examples/c/Data_Input_Output/C Program to Program which produces its own source code as its output.c

14 lines
213 B
C
Raw Normal View History

2019-11-15 12:59:38 +01:00
#include<stdio.h>
void main()
{
FILE *fp;
char c;
fp = fopen(__FILE__,"r");
do
{
c= getc(fp);
putchar(c);
}
while(c!=EOF);
fclose(fp);
}