有以下声明和定义:
struct Student { char num[10]; int age; };
struct Student stu[3]={{"202001",20},{"202002",18},{"202002",19}};
struct Student *p=stu;
以下选项中,引用结构体变量成员的表达式错误的是 。 A. (p++)->num B. p->num C. (*p).num D. stu[3].age
有以下声明和定义:
struct Student { char num[10]; int age; };
struct Student stu[3]={{"202001",20},{"202002",18},{"202002",19}};
struct Student *p=stu;
以下选项中,引用结构体变量成员的表达式错误的是 。 A. (p++)->num B. p->num C. (*p).num D. stu[3].age