C语言数据块读写

看看哪错了?运行后输入1遍就被退了出来,写入的数据只有前2个比较符合,中间还有些乱码。。从书上抄的,怎么还有错啊,?#include<stdio.h>#include<s... 看看哪错了?运行后输入1遍就被退了出来,写入的数据只有前2个比较符合,中间还有些乱码。。从书上抄的,怎么还有错啊,?
#include<stdio.h>
#include<stdlib.h>
int main()
{
FILE *fp1;
int i;
struct stu
{
char name[15];
char num[6];
float score[2];
} student;
if((fp1=fopen("test.txt","wb"))==NULL)
{
printf("cannot open file");
exit(0);
}
printf("input data:\n");
for(i=0;i<2;i++)
{ scanf("%s%s%f%f",student.name,student.num,&student.score[0],&student.score[1]);
fwrite(&student,sizeof(student),1,fp1);
fclose(fp1);
if((fp1=fopen("text.txt","rb"))==NULL)
{
printf("cannot open file");
exit(0);
}
printf("out from file:\n");
for(i=0;i<2;i++)
{ fread(&student,sizeof(student),1,fp1);
printf("%s%s%7.2f%7.2f\n",student.name,student.num,student.score[0],student.score[1]);
}
fclose(fp1);
return 0;
}}
if((fp1=fopen("text.txt","rb"))==NULL)
{
printf("cannot open file");
exit(0);
}
这是什么意思啊?不能直接打开文件用fp1=fopen("text.txt","rb");么?
展开
 我来答
zhaigangvvv
2009-01-09 · TA获得超过348个赞
知道小有建树答主
回答量:1190
采纳率:0%
帮助的人:587万
展开全部
fopen函数完全可以,但为了确保文件是被打开,加了if判断,这是程序设计问题,而且这个函数有返回值
theodorez
2009-01-09 · TA获得超过430个赞
知道答主
回答量:261
采纳率:0%
帮助的人:181万
展开全部
if((fp1=fopen("text.txt","rb"))==NULL)
{
printf("cannot open file");
exit(0);
}
确保文件成功地打开,否则用fp1=fopen("text.txt","rb");也是可以的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式