15.以下程序的运行结果是( )。 #include #include void main() { char *p1,*p2,str[50]= "abc",st[50]= "abc"; p1=st; p2="abc"; strcpy(str+1, strcat(p1,p2)); printf("%s\n",str); }
A: abcabcabc
B: cabcabc
C: aabcabc
D: cabcabc
A: abcabcabc
B: cabcabc
C: aabcabc
D: cabcabc
举一反三
- 下面程序的输出结果为 ______。includemain(){char pl [7]="abc",p[]2="ABC"str[50]=" 下面程序的输出结果为 ______。 #include<string.h> main() { char pl [7]="abc",p[]2="ABC"str[50]="xyz"; strcpy(str,strcat(p1,p2)); printf("%s"str); } A.xyzabcABC B.abcABC C.xyzabc D.xyzABC
- #include "stdio.h" main( ) { int a,b,*p1,*p2,*p; a=1;b=2; p1=&a; p2=&b; if(a
- 有以下程序:int main(void) {char *p1,*p2,str[50]=”ABCDEFG”; p1="abcd";p2="efgh"; strcpy(str+1,p2+1); strcpy(str+3,p1+3); printf("%s",str); return 0; } 程序运行后的输出结果是().
- 【填空题】 #include <stdio.h> void main() { int*p1,*p2,*p; inta=5,b=8; p1=&a; p2=&b; if(a<b) { p=p1; p1=p2; p2=p;} printf("%d,%d ",*p1,*p2); printf("%d,%d ",a,b); }
- #include #include main() {char str[][20]={"One*World","One*Dream!"}; char *p=str[1]; printf(“%d,”,strlen(p)); printf("%s ",p); } 程序运行后的输出结果是