在以下程序段中,已知int型数据占两个字节,则输出结果是()。unionun{inti;doubley;}structst{chara[10];unionunb;}printf(“%d”,sizeof(structst));A)14B)18C)20D)16
举一反三
- 以下说明和语句中,已知 int 型数据占两个字节,则以下语句的输出结果是( )。 struct st { char a[10] ; int b ; double c ; } ; printf( “% d ”, sizeof(struct st)) ;
- 以下说明和语句中,已知int型数据占两个字节,则以下语句的输出结果是【 】。struct st { char a[l0]; int b; double c; }; printf(“%d”,sizeof(struct st)); A: 0 B: 8 C: 20 D: 2
- 以下程序的输出结果是().structst{intx;int*y;}*p;int...f("%d\n",++(p->x));}
- 以下程序的输出结果是().structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,
- 已知程序段{chara[10];scanf(%s,a);printf(%s,a);}输入:abcd回车,输出结果是:ab