typedef struct student
{
…
…
…
};struct student st[N];
void subject (student st[],int n)
函数调用时出现错误:unkown type name "student"
未知student类型名称
怎么改
typedef struct student
{
…
…
…
};struct student st[N];
void subject (student st[],int n)
函数调用时出现错误:unkown type name "student"
未知student类型名称
怎么改
typedef struct Student
{
...
}student;
student st[N];
这么用哈