有以下说明和定义语句<br class="markdown_return">Struct student<br class="m

分类: C语言开发工程师 发布时间: 2023-11-03 11:13 浏览量: 0

有以下说明和定义语句
Struct student
{ int age; char num[8];};
Struct student stu[3]={{20,"200401"},{21,"200402"},{19,"200403"}};
Struct student *p=stu;
以下选项中引用结构体变量成员的表达式错误的是______。

A.(p++)->num

B.p->num

C.(*p).num

D.stu[3].age

正确答案是D