这就是我到目前为止。我希望程序从键盘读取数据并将其写入一个名为 INPUT 的文件,再次从 INPUT 文件中读取相同的数据,然后复制到另一个文件并将其显示在屏幕上。我不知道我哪里出错了。请帮我。提前致谢。
#include<stdio.h>
#include<file.h>
main()
{
FILE *f1,*f2;
char c;
printf(“data input\n\n”)
f1 = fopen(“INPUT”, “w”);
while((c = getchar())!=EOF)
putc(c,f1);
fclose(f1);
printf(“\ndata output\n\n”)
f1 = fopen(“INPUT”, “r”);
while((c = getchar())!=EOF)
putc(“%c”,c);
fclose(f1);
//copying f f1 data into f2
f1=fopen(file1,”r”)
if(f1=NULL)
{
printf(“no data”);
exit(0):
}
f2=fopen(file2,”w”);
if(f2=null)
{
printf(“cannot able to open”);
exit(0);
}
while((ch==getc(f1)!=EOF)
putc(ch,f2);
printf(“completed”);
fclose(f1);
fclose(f2);
}