定义以下结构体类型struct c{ int x; float y;}a[3]sizeof(a)的结果是 ()。
举一反三
- 中国大学MOOC: 定义以下结构体类型struct c{ int x; float y;}a[3]sizeof(a)的结果是 ( )。
- 定义以下结构体类型 struct s { int x; float f; }a[3]; 语句printf("%d",sizeof(a))的输出结果为
- 定义以下结构体类型 A: struct s B: { int x; C: float f; D: }a[3]; E: printf("%d",sizeof(a))的输出结果为() F: 、 4 G: 、 12
- 在16位系统中,定义以下结构体类型 struct s { int a; char b; float f; }; 则语句printf("%d",sizeof(struct s))的输出结果为()
- 以下结构体定义错误的是 A: struct ord {int x; int y} struct ord a; B: struct ord {int x; int y} ; struct ord a; C: struct ord {int x; int y} a; D: struct {int x; int y} a;