A.1636
B.1635
C.1634
D.1639
第1题:
有以下程序:
程序运行后的输出结果是( )。
A.10,One*Dream!
B.9,One*Dream!
C.9,One*World
D.10,One*World
第2题:
有以下程序
#include<stdio.h>
#include<string.h>
main( )
{char str[][20]={“Qne*World”,“one*Dream!”},*P=str[1 ].
prinff(“%d,”,strlen(p));printf(“%s\n”,P); ’
}
程序运行后的输出结果是
A.9,One*World S)
B.9,One*Dream!
C.10,One*Dream!
D.10,One*World
第3题:
有以下程序:
include<stdio.h>
include<string.h>
main( )
{char str[][20][{"One*World","One*Dream!"},*p=str[1];
prinft("%d,",strlen(p));printf("%s\n",p);
}
程序运行后的输出结果是( )。
A.9,0ne*World
B.9,0ne*Dream!
C.10,One*Dream!
D.10,Ome*World
本题输出两个结果,第一个是求字符串的长度。第二个是输出的字符串,数组的下标是从0开始的,所以当str取1的时候,应为“One*Dream!”。
第4题:
有以下程序:程序运行后的输出结果是( )。
A.9.One*World
B.9.One*Dream!
C.10.One*Dream!
D.10.One*World
第5题:
有以下程序: #include<stdio.h> #include<string.h> main( ) {char str[][20][{"One*World","One*Dream!"},*p=str[1]; prinft("%d,",strlen(p));printf("%s\n",p); } 程序运行后的输出结果是( )。
A.9,0ne*World
B.9,0ne*Dream!
C.10,One*Dream!
D.10,Ome*World
第6题:
【单选题】下面的哪些程序片段可能导致错误
A.String s = “Hello” ; String t = “World” ; String k = s+t ;
B.String s = “hello” ; String t ; t = s[3]+”one” ;
C.String s = “Hello” ;
D.String s = “Hello world!” ;