网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

有以下程序

main()

{ union

{ char ch[2];

int d;

} s;

s.d=0x4321;

printf(" % x, % x\n",s.ch[0],s.ch[1]);

}

在 16 位编译系统上,程序执行后的输出结果是

A)21,43

B)43,21

C)43,00

D)21,00


参考答案

更多 “ 有以下程序main(){ union{ char ch[2];int d;} s;s.d=0x4321;printf(" % x, % x\n",s.ch[0],s.ch[1]);}在 16 位编译系统上,程序执行后的输出结果是A)21,43B)43,21C)43,00D)21,00 ” 相关考题
考题 有以下程序:main(){ union { char ch[2]; Int d; } s; s.d=0x4321; printf("%x,%x\n",s.ch[0],s.ch[1]);}在16位编译系统上,程序执行后的输出结果是( )。A.21,43 B.43,21 C.43,00 D.21,00

考题 以下程序的输出结果是______。 main() { union { int i[2]; long j; char m[4]; }r,*s=r; s->i[0]=0x409; s->i[1]=0x407; printf("%d\n",s->m[0]); }A.9B.49C.7D.47

考题 有以下程序 main() { union { char ch[2]; int d; }s; s.d=0x4321; printf("%x,%x\n",s.ch[O],s.ch[1]); } 在16位编译系统上,程序执行后的输出结果是______。A.21,43B.43,21C.43,00D.21,00

考题 有以下程序: main { union { char ch[2]; int d; }s; d=0x4321; printf("%x,%x\n",S.ch[0],S.ch[l]); } 在16位编译系统上,程序执行后的输出结果是( )A.21,43B.43,21C.43,00D.21,00

考题 有以下程序:include main(){union{charch[2];int d;} s;s.d=0x4321;printf("%x,%x\n", 有以下程序: #include <stdio.h> main() { union { charch[2]; int d; } s; s.d=0x4321; printf("%x,%x\n",s.ch[0],s.ch[1]); } 在16位编译系统上,程序执行后的输出结果是( )。A.21,43B.43,21C.43,00D.21,00

考题 有以下程序:main{ union{ char ch[2];int d;}s;d=0x4321;printf(%x,%x\n,S.ch[0],S.ch[l]);}在16位编译系统上,程序执行后的输出结果是( )A.21,43B.43,21C.43,00D.21,00

考题 下列程序的输出结果是______。include main(){union {int k;char i[2]; }*S,a; s= 下列程序的输出结果是______。#include <stdio.h>main(){ union { int k; char i[2]; } *S,a; s=a; s->i[0]=0x39; s->i[1]=0x38; printf("%x\n",s->k);}A.3839B.3938C.380039D.390038

考题 有以下程序:include void swap(char * x,ehar * y){ char t;t= *x; *x: *y; *y=t;main 有以下程序:#include <stdio.h>void swap(char * x,ehar * y){ char t; t= *x; *x: *y; *y=t;main ( ){ char *s1 ="abc", * s2 ="123"; swap(s1 ,s2); printf("%s,%s \n" ,s1 ,s2);}程序执行后的输出结果是( )。A.123,abeB.abe,123C.1bc,a23D.321,cba

考题 19、下面程序执行后的输出结果是()。 #include <stdio.h> int main() { union { char ch[2]; short d; } s; s.d=0x4321; printf("%x,%x",s.ch[0],s.ch[1]); return 0; }A.21,43B.43,21C.43,00D.21,00