0

这就是我到目前为止。我希望程序从键盘读取数据并将其写入一个名为 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);
}
4

1 回答 1

1

您想与 NULL 进行比较:

  if(f1=NULL)

但这分配了NULL。

另一个比较中的相同问题:

  if(f2=null)

只需将它们更改为:

if(!f1)

if(!f2)
于 2012-12-28T21:47:11.810 回答