A.A+B+!
B.新年好!
C.C!
D.不能计算
[单选题]如果A=“新年”,B=“好”,C='A+B',表达式&C+"!"的值是______。A.A+B+!B.新年好!C.C!D.不能计算
[单选题]如果A="新年",B="好",C='A+B',表达式&C+"!"的值是 ______。A.A+B+!B.新年好!C.C!D.不能计算
[单选题]如果A=“新年”,B=“好”,C=‘A+B’,表达式&C+“!”的值是______。A.A+B+!B.新年好!C.C!D.不能计算
[单选题]如果A=“新年”,B=“好”C=“A+B”,表达式&C+“!”的值是 ______。A.A+B+!B.新年好!C.C!D.不能计算
[单选题]表达式'8'-'2'的值是( )。A.整数6B.字符6C.表达式不合法D.字符8
[单选题]已知字符'B'的ASCII码为98,语句printf("%D,%C",'B','B'+1);的输出为()A.98,B.B语句不合法C.98,99D.98,C
[单选题]有以下程序includemain(){char p[]={'a','b','c'},q[10]={'a','b','c'}; printf("%d%有以下程序 #include<string.h> main() { char p[]={'a','b','c'},q[10]={'a','b','c'}; printf("%d%d/n",strlen(p),strlen(q));} 以下叙述中正确的是A.在给p和q数组置初值时,系统会自动添加字符
[单选题]有以下程序includemain(){char p[]={'a','b','c',},q[10]={'a','b','c'}; printf("%d有以下程序 #include<string.h> main() { char p[]={'a','b','c',},q[10]={'a','b','c'}; printf("%d%d/n",strlen(p),strlen(q));} 以下叙述中正确的是A.在给p和q数组置初值时,系统会自动添加字
[单选题]有以下程序includemain(){charp[]={'a','b','c'},q[10]={'a','b','c'};printf("%d%d/有以下程序 #include<string.h> main() { charp[]={'a','b','c'},q[10]={'a','b','c'}; printf("%d%d/n",strlen(p),strlen(q));} 以下叙述中正确的是A.在给p和q数组置初值时,系统会自动添加字符串
[单选题]有以下程序: main( ) { char a[ ]={‘a',‘b',‘c',‘d',‘e',‘f',‘g',‘h',‘/0'};int i,j; i=sizeof(a);j=strlen(a); printf("%d,%d/n",i,j); } 程序运行后的输出结果是A.9,9B.8,9C.1,8D.9,8