[求助]菜鸟也能看懂的...
有这样一个程序,能通过编译(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");
}