Content
目录
结构体
struct student {
char name[20];
int num;
float score;
}
struct student st,*p;
p=&st;
则下面的语句正确的是
A)st->num=1001;B)p.num=2001; C)st.name="Zhangsan";D)(*p).score=78
a选项应该为st.num ;b选项应该为p->num ;c选项不能给数组整体赋值;只有d正确
2023-12-14 10:26:27
Content
目录
struct student {
char name[20];
int num;
float score;
}
struct student st,*p;
p=&st;
则下面的语句正确的是
A)st->num=1001;B)p.num=2001; C)st.name="Zhangsan";D)(*p).score=78
a选项应该为st.num ;b选项应该为p->num ;c选项不能给数组整体赋值;只有d正确