结构体数组的调用函数问题
我定义了一个structstudent{intxh;charname[10];floatms;floates;floatcs;floatave;floattot;};vo...
我定义了一个struct student
{
int xh;
char name[10];
float ms;
float es;
float cs;
float ave;
float tot;
};
void xs();
void main()
{
student a[30];
}
void xs()
那个调用函数该怎样写才能够在函数里用a[i].xh之类的 展开
{
int xh;
char name[10];
float ms;
float es;
float cs;
float ave;
float tot;
};
void xs();
void main()
{
student a[30];
}
void xs()
那个调用函数该怎样写才能够在函数里用a[i].xh之类的 展开
3个回答
展开全部
你说的调用函数是xs?
如果是的话你2种方法,1是把你的student对象a[30]传递到函数中,第2,你在xs里面自己再定义一个student的对象
如果是的话你2种方法,1是把你的student对象a[30]传递到函数中,第2,你在xs里面自己再定义一个student的对象
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
struct student
{
int xh;
char name[10];
float ms;
float es;
float cs;
float ave;
float tot;
}student;
末尾加个这个就可以了
{
int xh;
char name[10];
float ms;
float es;
float cs;
float ave;
float tot;
}student;
末尾加个这个就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询