设a和b均为int型变量,且a=1,b=2,则表达式2.5+a/b的值为
查看答案
C51中int型变量的长度为4位,其值域为_________。
用do~while语句求1+2+3+4+5+6+…+100的和。
函数调用strcat(strcpy(str1,str2),str3)的功能是
A)将串str1复制到串str2中后再连接str3之后
B)将串str1连接到串str2之后再复制到串str3后
C)将串str2复制到串str1之后再将串str3连接到串str1之后
D)将串str2连接到串str1之后再复制到串str3后
main(){char arr[2][4];strcpy(arr,”you”);strcpy(arr[1],”me”);arr[0][3]=’&’;printf(“%s”,arr); }
A) you&me
B) you
C) me
D) err