函数引用语法错误求解
#include<stdio.h>#include<string.h>
typedef struct
{
char name[20]; //学生姓名
int math; //数学成绩
int eng; //英语成绩
int db; //数据库成绩
}student;
void SetZero(student St)
{
St.math=0;
St.eng=0;
St.db=0;
}
int main()
{
SetZero(student);
}
不知道哪里错了,急!