标题:关于 fread 与 fwrite 函数的问题
只看楼主
幻世梵天
Rank: 1
等 级:新手上路
帖 子:23
专家分:4
注 册:2014-2-7
结帖率:100%
已结贴  问题点数:20 回复次数:2 
关于 fread 与 fwrite 函数的问题
#include <stdio.h>
#include <stdlib.h>

#define SIZE 20

int main()
{
   int count,array1[SIZE],array2[SIZE];
   FILE *fp;

   for(count = 0; count < SIZE; count++)
   array1[count] = (2*count);

   if((fp = fopen("direct.txt","wb")) == NULL)
   {
       fprintf(stderr,"Erroring opening file");
       exit(1);
   }

   if(fwrite(array1,sizeof(int),SIZE,fp) != SIZE)
   {
       fprintf(stderr,"Error writing to file");
       exit(1);
   }
   fclose(fp);

   if((fp = fopen("direct.txt","rb")) == NULL)
   {
       fprintf(stderr,"Erroring opening file");
       exit(1);
   }
   if(fread(array2,sizeof(int),SIZE,fp) != SIZE)
   {
        fprintf(stderr,"Erroring reading file");
       exit(1);
   }
   fclose(fp);

   for(count = 0; count < SIZE;count++)
   {
       printf("%d\t%d\n",array1[count],array2[count]);//关于\n的有无和输出的不同

   }


   return 0;
}


如果加上\n输入正确,不加的话就不对,这是什么原因
  这是错误的图片
搜索更多相关主题的帖子: include writing count file 
2014-08-24 22:23
砖家的谎言
Rank: 12Rank: 12Rank: 12
等 级:禁止访问
威 望:30
帖 子:693
专家分:3898
注 册:2013-12-6
得分:14 
\n 是换行输出

我不是砖家,要努力成为砖家。
2014-08-25 08:07
幻世梵天
Rank: 1
等 级:新手上路
帖 子:23
专家分:4
注 册:2014-2-7
得分:0 
回复 2 楼 砖家的谎言
嗯,那为什么加上\n和不加\n输出的内容会不一样呢?
2014-08-25 18:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-435318-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.198745 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved