( ) books are of ( ) size. A、Two/ the sameB、Two/ a sameC、The two/ the sameD、The two/ a same
( ) books are of ( ) size.
A、Two/ the same
B、Two/ a same
C、The two/ the same
D、The two/ a same
相关考题:
I don’t think television will ever ________ books. A.take placeB.take place ofC.take the placeD.take the place of
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.EB.sC.nD.h
06410101:若有语句:char s1[10], s2[10]={"books"},则能将字符串books赋给数组s1的正确语句是()。A.s1={"books"};B.strcpy(s1,s2);C.s1=s2;D.strcpy(s2,s1);
若有声明语句char s1[10]={0},s2[10]="books";则能将字符串“books”赋给数组s1保存的语句是()。A.strcat(s1,s2);B.s1="books";C.s1=s2;D.strcpy(s2,s1);