A.cout<<*s;
B.cout<
C.cout<<&s;
D.cout<<(void*)s
第1题:
假定s被定义为指针类型char *的变量,初始指向的字符串为"Hello world!",若要使变量p指向s所指向的字符串,则p应定义为()。
Achar *p=s;
Bchar *p=&s;
Cchar *p;p=*s;
Dchar *p; p=&s;
第2题:
假定p指向的字符串为”leaves”,则cout<<p+2的输出结果是【 】
A.a
B.aves
C.eaves
D.leaves
第3题:
若要使用除了输入输出的字符串函数,需要引入的头文件是()
A.string.h
B.ctype.h
C.stdlib.h
D.stdio.h
第4题:
假定p指向的字符串为"string",则cout<<p+3的输出结果为ing
第5题:
假定指针变量p指向的字符串为''string'',则cout<<p+1的输出结果为()
A.tring
B.ring
C.ing
D.t
E.r
F.i