| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 591 人关注过本帖
标题:内存不能read的错误
取消只看楼主 加入收藏
killer_l
Rank: 2
等 级:新手上路
威 望:3
帖 子:1139
专家分:0
注 册:2007-5-25
收藏
 问题点数:0 回复次数:0 
内存不能read的错误
写了个录入学生信息的函数,执行到输入学号那就会出现内存不能read的字样,我照着这个贴(http://bbs.bc-cn.net/viewthread.php?tid=141458&star=at#)写的,基本差不多啊
void addstudent()
{
int count;
char ch;

system(\"cls\");
if((student=fopen(filename1,\"a+b\"))==NULL)
{
printf(\"不能打开文件,请确认磁盘已满或c:\\学生信息.dat文件没有损坏\");
getch();
exit(1);
}
rewind(student); //定位文件头开始读取
for(count=0;fread(&head[count],sizeof(struct student),1,student)==1;count++)
{
continue;
}
printf(\"\n=======================信息登记表===========================\n\");

printf(\"---------------------------------------------------------\n\n\");
printf(\"学 号:\");
while(gets(head[count].num)!=NULL ) //输入学号
{
printf(\"\n姓 名:\");
gets(head[count].name); //输入姓名
printf(\"\n年 龄:\");
gets(head[count].age); //输入年龄
fwrite(&head[count++],sizeof(struct student),1,student); //将信息写入文件

printf(\"是否录入下一个学生信息(y/n)\");
ch=getch();
if(ch=='y'||ch=='Y')
{
system(\"cls\");
printf(\"\n请输入下一个学生的个人信息\n\");
printf(\"\n学 号:\");
continue;
} //继续输入下一个学生信息
else
{
printf(\"\n\n个人信息录入结束,返回!\");
fclose(student); //关闭文件
getch(); //返回子菜单
system(\"cls\");
return ;
}
}
printf(\"输入有误,终止个人信息录信,返回!\");
getch();
system(\"cls\");
return ; //返回
}
搜索更多相关主题的帖子: 内存 read 
2007-05-30 20:20
快速回复:内存不能read的错误
数据加载中...
 
   



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

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