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