Charles is now an actor. ______(give)half a chance I would have been the same.
第1题:
A、are…being
B、is…being
C、has…been
D、have…been
第2题:
I () roast leg of lamb, please.
A、will like
B、would like
C、would
第3题:
第4题:
第5题:
b)
main()
{
union{ /*定义一个联合*/
int i;
struct{ /*在联合中定义一个结构*/
char first;
char second;
}half;
}number;
number.i=0x4241; /*联合成员赋值*/
printf("%c%c\n", number.half.first,
mumber.half.second);
number.half.first='a'; /*联合中结构成员赋值
*/
number.half.second='b';
printf("%x\n", number.i);
getch();
}
AB (0x41 对应'A',是低位;Ox42 对应'B',
是高位)6261 (number.i 和number.half 共用一块地址空
间)
第6题: