[单选题]有以下说明和定义语句 struct student { int age; char num[8];}; struct student stu[3]={{20,"200401"},{21,"200402"},{19,"200403"}}; struct student *p=stu; 则以下选项中引用结构体变量成员的表达式错误的是
竞赛题库
|
2023-10-27 16:31:36
|
17
[单选题]有以下说明和定义语句 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
查看答案

西南科技大学

Python程序设计

您可能感兴趣的试题
TOP