feof注意点

feof注意点#includeintmain(){   FILE*in,*out;   charch,infile[10],outfile[10];   printf(“Entertheinfilename:”);   scanf(“%s”,infile);   in=fopen(infile,”r”);       if(in==NULL)

#include <stdio.h>

int main()
{

    FILE *in,*out;
    char ch,infile[10],outfile[10];

    printf(“Enter the infile name:”);
    scanf(“%s”,infile);
    in=fopen(infile,”r”);
    
    if(in==NULL)
    { 
        printf(“Can’t open the file that you want read!”);
        return 1;
    }

    printf(“Enter the outfile name:”);
    scanf(“%s”,outfile);
    out=fopen(outfile,”w”);
    if(out==NULL)
    { 
        printf(“Can’t open the file that you want to write!”);
        return 1;
    }

    while(!feof(in))
    { 
        ch=fgetc(in);
        putchar(ch);
        fputc(ch,out);
    }
 
    fclose(in);
    fclose(out);
    
    return 0;
}

上面这个小程序,每次运行后,目标文件会比源文件多一个字节,比如,源文件Test1.txt的内容是:
hehe
运行后,目标文件Test2.txt的内容却是:
hehe
用记事本打开看的,多了一个字节,变成了5字节

上面这段程序在谭浩强的C程序设计(第二版)中也有这个问题,这实际上是对feof这个函数的处理方式不理解所造成的,实际上:

当feof(FILE *)读到EOF标志并不认为文件结束了,依旧返回0,直到读到EOF的下一个字符才返回1,这时才认为是文件结束。

因此若以while(!feof(fp))为循环条件的时候,要将一个文件(fp)完全复制到另一个文件(fp1),需要加上判断if(ch!=-1),如下:

while(!feof(in))
 {

  ch=fgetc(in);
  if(ch!=-1)
  fputc(ch,out);

  }

或者:

 while(true)
    { 
        ch=fgetc(in);
        if(feof(in))
         break;
        putchar(ch);
        fputc(ch,out);
    }

今天的文章feof注意点分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/10143.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注