以下程序的输出结果是 ______。 #include<iostream.h> #include<string.h> void main(){ char *p1=",hello",*p2="world!",str[

admin2013-05-30  27

问题 以下程序的输出结果是 ______。    #include<iostream.h>    #include<string.h>        void  main(){        char *p1=",hello",*p2="world!",str[50]:"Hii";        strcpy(str+2,p1);        strcat(str,p2);        cout<<str;    }

选项 A、Hii,hello world!
B、hello world!
C、ii,hello world!
D、Hi,hello world!

答案8

解析
转载请注明原文地址:https://kaotiyun.com/show/BFNp777K
0

最新回复(0)