定义以下结构体类型
A: struct s
B: { int x;
C: float f;
D: }a[3];
E: printf("%d",sizeof(a))的输出结果为()
F: 、 4
G: 、 12
A: struct s
B: { int x;
C: float f;
D: }a[3];
E: printf("%d",sizeof(a))的输出结果为()
F: 、 4
G: 、 12
举一反三
- 定义以下结构体类型 struct s { int x; float f; }a[3]; 语句printf("%d",sizeof(a))的输出结果为
- 在16位系统中,定义以下结构体类型 struct s { int a; char b; float f; }; 则语句printf("%d",sizeof(struct s))的输出结果为()
- 定义以下结构体类型struct c{ int x; float y;}a[3]sizeof(a)的结果是 ()。
- 定义以下结构体类型 struct s { int x;float f;} a; 下面的说法正确的是【 】
- 有以下程序段,输出结果为()。 #include <stdio.h> struct s { int a; char b; double f; }; main() { printf("%d",sizeof(struct s)); }