A:The classroom is not big enough for 50 students. B:Yes, I agree. It's ( ).
A. too small
B. no enough
C. not enough bigger
第1题:
– Nice weather, isn't it? – ( ).
A. I'm not sure
B. You know it well
C. Yes, it is
D. Yes, it isn't
第2题:
以下不能将s所指字符串正确复制到t所指存储空间的是( )。
A.while(*t=*s){t++;s++;}
B.for(i=0;t[i]=s[i];i++);
C.do{*t++:*s++;}while(*s);
D.for(i=0,j=0;t[i++]=s[j++];);
第3题:

第4题:
以下不能将S所指字符串正确复制到t所指存储空间的是( )。
A.while(*t=*s){t++;s++;)
B.for(i=0;t[i]=s[i];i++);
C.do{*t++=*s++;)while(*s);
D.for(i=0,j=o;t[i++]=s[j++];);
第5题:
main( )
{ int a[6]={10,20,30,40,50,60},i;
invert(a,0,5);
for(i=0;i<6;i++) printf(“%d,”,a[i]);
printf(“\n”);
}
invert(int s[ ],int i,int j)
{ int t;
if(i<J)
{ invert(s,i+1j-1);
t=s[i];s[i]=s[j];s[j]=t;
}
}
第6题:
计算2+4+6+8+......+100的值,请选择正确的答案填空()。 #include<stdio.h> void main() { int i; int s, t ; //s代表和, t代表某项 s = 0 ; t = 2 ; for (i=1 ; i <= 50 ; i++) { _____________; t += 2; } printf(" sum = %d",s); }
A.s =s +t
B.s = t
C.s =s+2
D.s = s * t