| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 264 人关注过本帖
标题:关于文件的问题
取消只看楼主 加入收藏
cqu0914
Rank: 1
等 级:新手上路
帖 子:4
专家分:2
注 册:2012-11-1
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
关于文件的问题
我写的这个程序,可是当我输入完必要的数据后,为什么还要在输一次才能显示结果?此外,如果,我想把程序运行结果放在某个特定的文件里,该怎么办?嗯,还有想用c做一个搜索应用,怎么存必要的数据,我该如何做一个文件呢?求大家的解答,感谢。
#include<stdio.h>
#include<stdlib.h>
int  main()
{struct stu_data
{int num;
char name[20];
char addr[20];
int text;
}stu[3];
FILE *fp;
int i,j;
fp=fopen("studentdata.txt","w");
if(fp==NULL)
{printf("cannot open the file\n");
return 0;
}
for(i=0;i<3;i++)
{scanf("%d%s%s%d\n",&stu[i].num,&stu[i].name,&stu[i].addr,&stu[i].text);
fwrite(&stu[i],sizeof(struct stu_data),1,fp);
}
fclose(fp);
fp=fopen("studentdata.txt","r");
if(fp==NULL)
{printf("cannot open the file\n");
return 0;
}
for(j=0;j<3;j++)
{fread(&stu[j],sizeof(struct stu_data),1,fp);
printf("%-15d%-20s%-20s%-5d\n",stu[j].num,stu[j].name,stu[j].addr,stu[j].text);
}
fclose(fp);
system("pause");
return 0;
}
搜索更多相关主题的帖子: include return cannot 
2013-01-07 00:51
cqu0914
Rank: 1
等 级:新手上路
帖 子:4
专家分:2
注 册:2012-11-1
收藏
得分:0 
哪位大神能给我给我回复?感谢啦

我思故我在。
2013-01-07 11:52
快速回复:关于文件的问题
数据加载中...
 
   



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

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