下面程序段的运行结果是 #include<iostream.h> void main( ) { char*s="abcde"; S+=2; cout<<&s;}
A.cde
B.字符'c'
C.字符'c'的地址
D.无确定的输出结果
第1题:
【单选题】下面程序段的运行结果是()。 char *s=”abcde”; s+=2; printf(“%d”,s);
A.cde
B.字符’c’
C.字符’c’的地址
D.无确定结果
第2题:
下面程序段的运行结果是()。 char *s="abcde"; s+=2; printf("%d", s);
A.cde
B.字符'c'
C.字符'c'的地址
D.无确定的输出结果
第3题:
下面程序段执行后的输出结果是()。 char *s="abcde" ; s+=2; printf("%d",s);
A.cde
B.字符'c'的地址
C.字符'c'
D.不确定
第4题:
下面程序段的运行结果是 。 char *s="abcde"; s+=2; printf("%d",s);
A.ced
B.字符'c'
C.字符'c'的地址
D.字符'b'的地址
第5题:
【单选题】下面程序段的运行结果是________. char *s="abcde"; s+=2;printf("%s",s);
A.cde
B.字符'c'
C.字符'c'的地址
D.无确定的输出结果