#includemain(){FILE *fp;char ch;if((fp=fopen("e10_1.c","rt"))==NULL)//读入文件e10-1.c{printf("Cannot open file strike any key exit!");getch();exit(1);}ch=fgetc(fp);while (ch!=EOF){putchar(ch);ch=fgetc(fp);}fclose(fp);}