字符串”\\\”ABCDEF\"\\"的长度是( )A)11B)10C)5D)3
字符串”\\\”ABCDEF\"\\"的长度是( )
A)11
B)10
C)5
D)3
相关考题:
有以下程序#includestring.hmain(){ char p[]={′a′, ′b′, ′c′},q[10]={ ′a′, ′b′, ′c′};printf("%d%d\n",strlen(p),strlen(q));}以下叙述中正确的是A.在给p和q数组置初值时,系统会自动添加字符串结束符,故输出的长度都为3B.由于p数组中没有字符串结束符,长度不能确定,但q数组中字符串长度为3C.由于q数组中没有字符串结束符,长度不能确定,但p数组中字符串长度为3D.由于p和q数组中都没有字符串结束符,故长度都不能确定
假设X的值是5,则执行以下语句时,可得到的输出结果是ABCDEF的Select Case语句是 ( )A.Select Case X Case 10 To 1 Print“ABCDEF” End SelectB.Select Case X Case Is>15,Is<5 Print"ABCDEF" End SelectC.Selecl Case K Case Is>5,1,3,To 10 Print"ABCDEF" End SelectD.Select Case X Case 1,3,Is>5 Print"ABCDEF" End Select
有以下程序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数组置初值时,系统会自动添加字符串结束符,故输出的长度都为3B.由于p数组中没有字符串结束符,长度不能确定,但q数组中字符串长度为3C.由于q数组中没有字符串结束符,长度不能确定,但p数组中字符串长度为3D.由于p和q数组中都没有字符串结束符,故长度都不能确定
有以下程序 #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数组置初值时,系统会自动添加字符串结束符,故输出的长度都为3B.由于p数组中没有字符申结束符,长度不能确定;但q数组中字符串长度为3C.由于q数组中没有字符串结束符,长度不能确定:但p数组中字符串长度为3D.由于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数组置初值时,系统会自动添加字符串结束符,故输出的长度都为3B.由于p数组中没有字符串结束符,长度不能确定,但q数组中字符串长度为3C.由于q数组中没有字符串结束符,长度不能确定,但p数组中字符串长度为3D.由于p和q数组中都没有字符串结束符,故长度都不能确定
下面能正确进行字符串赋值操作的语句是______。A.char s[5]={"ABCDE"}:B.chars[5]={'A'、'B'、'c'、'D'、'E'};C.char*s;s="ABCDEF";D.char*s; scanf("%s",s):
有以下程序: include include main( ) {char p[] = {'a','b','c'] ,q[10 有以下程序: #include <stdio.h> #include <string.h> main( ) { char p[] = {'a','b','c'] ,q[10] = {'a','h','c'} prinff( "% d % d\n" , strlen (p) , strlen (q) );以下叙述中正确的是( )。A.在给p和q数组赋初值时,系统会自动添加字符串结束符,故输出的长度都为3B.由于P数组中没有字符串结束符,长度不能确定;q数组中字符串长度为3C.由于q数组中没有字符串结束符,长度不能确定;p数组中字符长度为3D.由于p和q数组中没有字符串结束符,故长度都不能确定
下面能正确进行字符串赋值操作的语句是______。A.char s[5]={"ABCDE"};B.char s[5] ={'a','b','c','d','e'};C.char *s;s="ABCDEF"D.char *s;scanf("%s",s);
单选题字符串s="love"的长度为()A3B4C5D6