标题:[求助]菜鸟也能看懂的...
只看楼主
喜雨
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2007-6-30
 问题点数:0 回复次数:4 
[求助]菜鸟也能看懂的...

有这样一个程序,能通过编译(devc++)但运行时总是出现错误
没办法...
只好去调式...
结果出来了....
说是产生了一个什么违例..段异常....
大家看下,发表一个高见...
这个程序本身很简单..大家都能看得明吧...
#include "stdio.h"
#include "string.h"
#define format "%d\n %s\n %f\n %f\n %f\n"
struct student
{
int num;
char name[20];
float score[3];
};
main()
{
void print();
struct student stu;
stu.num=10001;
strcpy(stu.name,"Fun jun");
stu.score[0]=76.8;
stu.score[1]=98;
stu.score[2]=87.6;
print(&stu);
system("pause");
}
void print(struct student *p)

{
printf(format,p->num,p->score[0],p->score[1],p->score[2]);
printf("\n");
}


搜索更多相关主题的帖子: include color 
2007-09-06 16:29
Autowalk
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2007-9-5
得分:0 
我用TC编译的,运行也没有问题
2007-09-06 16:49
PcrazyC
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:5652
专家分:0
注 册:2006-10-20
得分:0 

void print(struct student *p)

{
printf(format,p->num,p->name,p->score[0],p->score[1],p->score[2]);
printf("\n");
}

print函数改一点就是了


雁无留踪之意,水无取影之心
2007-09-06 17:25
学技术的
Rank: 2
等 级:论坛游民
帖 子:91
专家分:45
注 册:2007-8-5
得分:0 
p指针没初始化
2007-09-06 17:47
喜雨
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2007-6-30
得分:0 
回复:(PcrazyC)void print(struct student *p){ ...
多谢多谢,,,
原来如此...
2007-09-06 22:15



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




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

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