求大神救救孩子吧,为啥error C2115: 'function' : incompatible types这个问题,程序如下
#include "stdio.h"
struct stu
{
int num;
float score;
};
void funa(struct stu *t)
{
t->num=123;
(*t).score=567.0; //注意指针的这两种引用成员的方式
}
/*void funa(struct stu t)
{
t.num=123;
t.score=567.0; //注意指针的这两种引用成员的方式
}*/
void main()
{
struct stu a={1000102,62.0};
funa(a);
printf("%d",a.num);
}