填空题 若有声明char str1[100]= "abcd",str2[ ]="efgh";,执行“strcat(str1,str2); printf("%s\n",str1);” 后的输出结果是
相关试题
单选题 在C语言中,以下字符常量合法的是
单选题 设所有变量均为整型,表达式r=(a=2,a=5,a++),则r的值是
单选题 以下程序的运行结果是 。 #include<stdio.h> int main() { char ch1='A',ch2='a'; printf("%c\n",(ch1,ch2)); return 0; }
单选题 .在C语言中,要求参加运算的数必须是整数的运算符是
单选题 以下程序的运行结果是 。 #include<stdio.h> int main() { int a=201,b=012; printf("%d,%d\n",a,b); return 0;
单选题 在C语言中,表示逻辑值“真”的是
单选题 .以下程序的运行结果是 。 #include<stdio.h> int main() { int m=5,n=10; printf("%d,%d\n",m++,--n); return 0;
单选题 设a=1,b=2,c=3,d=4,则表达式a<b?a:c<d?c:d的值是