| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 979 人关注过本帖
标题:[讨论]错在哪里?急死人了!
取消只看楼主 加入收藏
xiehongyou
Rank: 1
等 级:新手上路
帖 子:84
专家分:0
注 册:2004-8-29
收藏
 问题点数:0 回复次数:2 
[讨论]错在哪里?急死人了!

/*,把保存在C:\phone.dat这个文件全部读出并显示在出来。这个程序错在那里?*/ #include "stdio.h" struct phone /*定义结构型变量*/ {char name; long num; } pho[5];

void readw()/*定义读文件的函数*/ { FILE *fp; int i; if((fp=fopen("c:\phone123.dat","rb"))==NULL) {printf("cannot open file2!\n"); return; } for(i=0;i<5;i++) if(fread(&pho[i],sizeof(struct phone),1,fp)!=1) printf("file read error!\n");

} main()/*主函数*/ {int i=0; readw();/*调用函数*/ for(i=0;i<5;i++) printf("%s%4ld\n",pho[i].name,&pho[i].num);/*边读边输出*/

getch(); }

搜索更多相关主题的帖子: phone 函数 定义 int 
2004-12-04 22:33
xiehongyou
Rank: 1
等 级:新手上路
帖 子:84
专家分:0
注 册:2004-8-29
收藏
得分:0 

这个程序我按版主的指点改了,但还是会出现“file read error"只能显示部分的数据还有乱码!

/*,把保存在C:\phone123.dat这个文件全部读出并显示在出来。这个程序错在那里?*/ #include "stdio.h" struct phone /*定义结构型变量*/ {char name[10]; long int num; } pho[5];

void readw()/*定义读文件的函数*/ { FILE *fp; int i; if((fp=fopen("c:\phone123.dat","rb"))==NULL) {printf("cannot open file2!\n"); return; } for(i=0;i<5;i++) if(fread(&pho[i],sizeof(struct phone),1,fp)!=1) printf("file read error!\n");

} main()/*主函数*/ {int h=0; readw();/*调用函数*/ for(h=0;h<5;h++) printf("%s%ld\n",pho[h].name,pho[h].num);/*边读边输出*/

getch(); }

2004-12-05 10:09
xiehongyou
Rank: 1
等 级:新手上路
帖 子:84
专家分:0
注 册:2004-8-29
收藏
得分:0 
谢谢版主这般耐心的回答,十分感谢!我前面的文件是按struct phone的格式来存储数据的。请问可以怎样改?
2004-12-05 19:06
快速回复:[讨论]错在哪里?急死人了!
数据加载中...
 
   



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

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