没有搜到到结果?点击这里求解答/求资源。
【单选题】
假定一个结构类型定义struct D{int a;union{int b;double c;};D* d[2];};”,该类型大小( )字节

20
24
28
32
【单选题】
假定一个结构类型定义struct D{int a;union{int b;double c;};D* d[2];};”,该类型大小( )字节

20
24
28
32
【单选题】
假定一个结构类型定义struct C{double* a[4];int n;};”,该类型长度( )。

20
21
22
24
【单选题】
假定一个结构类型定义struct C{double* a[4];int n;};”,该类型长度( )。

20
21
22
24
【单选题】
假定一个结构类型定义struct A{int a,b;A* c;};”,该类型长度( )。

8
10
12
16
【单选题】
假定一个结构类型定义struct A{int a,b;A* c;};”,该类型长度( )。

8
10
12
16
【单选题】
假定一个结构类型定义struct B{int a[5];char* b;};”,该类型长度( )。

20
21
22
24
【单选题】
假定一个结构类型定义struct B{int a[5];char* b;};”,该类型长度( )。

20
21
22
24
【单选题】
设有定义:char a;int b;float cdouble d;执行语句:c=a+b+c+d;后,变量c 数据类()。

int
char
float
double
【单选题】
假定p指向二维数组int d[4][6]指针,p类型( )。

int*
int**
int[6]
int(*)[6]