A、regularly
B、usually
第1题:
A、respects
B、respect
C、respected
D、respecting
第2题:
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 共用一块地址空
间)
第3题:
第4题:
In his composition there are ________errors _______a few misspellings.
A: no other ... than
B: some other ... than
C: more ... than
D: other ... than
第5题:
第6题:
I()reading novels()watching movies. I like my own imagination when I read them.
Awouldrather;than
Bprefer;to
Cprefer;than