下面程序段的输出结果是______。 char *s="abcde"; s+=2;printf("%d",s);
A.cde
B.字符'c'
C.字符'c'的地址
D.无确定的输出结果
第1题:
9、下面程序段执行后的输出结果是()。 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.cde
B.字符’c’
C.字符’c’的地址
D.无确定结果
第5题:
【单选题】下面程序段的运行结果是________. char *s="abcde"; s+=2;printf("%s",s);
A.cde
B.字符'c'
C.字符'c'的地址
D.无确定的输出结果