中国大学MOOC: 有如下结构体说明,以下叙述中错误的是( )。struct stu {int a; float b;} stutype;
举一反三
- 有如下结构体说明,以下叙述中错误的是( )。struct stu {int a; float b;} stutype;? struct是结构体类型的关键字|a和b都是结构体成员名|struct stu是用户定义的结构体类型|stutype是用户定义的结构体类型名
- 中国大学MOOC: 设有以下说明语句:typedef struct stu{ int a; float b;} stutype;则下面叙述中正确的是()。
- 中国大学MOOC: 下面叙述中不正确的是 。struct stu { int a; float b; } stutype;
- 设有以下说明语句: typedef struct stu { int a; float b; } stutype; 则下面叙述中错误的是( )
- 设有以下说明语句:typedef struct stu{int a; float b;}stutype;下面叙述错误的是 A: stutype是用户定义的结构体变量名 B: struct stu是用户定义结构类型 C: a和b都是结构成员名 D: struct 是结构类型关键字