#include <stdio.h> void main () { char c; FILE *fp; fp=fopen("1.txt","r"); while((c = getc (fp)) != EOF) { putchar(c); } fclose(fp); }