A.to I
B.for I
C.for me
D.to me
第1题:
A.some / a
B.an / some
C.some / some
第2题:
The word “tallied” (Line 3, Para. 2) probably means ______.
A.calculated
B.corresponded to
C.listed
D.gave
第3题:
30、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { for(j=0;books[i][j]!=0;j++){ if(books[i][0]<books[i][j]) books[i][0]= books[i][j]; } } printf("%c",books[0][0]); return 0; }
A.E
B.s
C.n
D.h
第4题:
第5题:
第6题:
以下字符串定义错误的是___________。
A.char s[7]="Teacher";
B.char s[]="Teacher";
C.char s[10]={"Teacher"};
D.char s[10]="Teacher";