执行语句printf("%x",0xffff0000|0x12345678);输出为()。
A. ffff0000
B. ffff5678
C. 12345678
D. 00005678
查看答案
执行语句printf("%x\n",0xffff0000^0x00005678);输出为()
A. ffff0000
B. 00005678
C. ffff5678
D. 0000ffff
执行语句 printf("%d\n", 24 << 1);输出为()
A. 24
B. 12
C. 48
D. 96
执行语句printf("%x\n",0x8f>>3);输出为()。
A. 8
B. f
C. 11
D. f8
执行以下程序后,输出为。#includeint main(){int i=6;printf("%d\n",i++);return 0;}