有以下程序
#include "stdio.h"
#include "string.h"
void main( )
{ char s1[50]={"some string *"},s2[]={"test"};
printf("%s\n", strcat(s1,s2));
}
执行后的输出结果是( )。
Asome string
Btest
C some stritest
D some string *test
相关试题
-
有以下程序 #include stdio.h #include string.h void main( ) { char s1[50]={some string *},s2[]={test}; p
-
有以下程序 #include stdio.h #include string.h void main( ) { char str[100] =How do you do; strcpy( str +
-
*x; *x=*y; *y=t; } main() {char *s1=abc,*s2=123; swap(s1,s2);printf(%s,%s\n,s1,s2); } 程序执行后的输出结果是()。
-
include void disp(char *string) { if(*string) { disp( string+1); putchar (*string
-
有以下程序 #include stdio.h void main() { char s[12]= a book; printf(%.4s,s); } 执行后的输出结果是( )。