-->
当前位置:首页 > 题库

单选题:下面定义结构变量的语句中错误的是( )。

Luz4年前 (2022-06-09)题库1006
下面定义结构变量的语句中错误的是( )。



A.struct student { int num; char name[20]; } s;
B.struct { int num; char name[20]; }
C.struct student { int num; char name[20]; }; struct student s;
D.struct student {int num; char name[20]; }; student s;


答案:D