c语言 程序实现不了 求高手帮忙
#include "stdio.h"main()
{
FILE *f1;
char c;
printf("input\n\n");
f1 = fopen("input","w");
while((c=getchar()) != "EOF")
putc(c,f1);
fclose(f1);
printf(" output \n\n");
f1 = fopen("input" ,"r");
c=getc(f1);
while((c=getc(f1)) != "EOF")
printf("%c",c);
fclose(f1);
我是win-tc下运行的