阅读下列程序,给出运行结果。 #include #include(string.h> main( ) { char str[100]=”How do you do”: strcpy(str+strlen(str)/2,“es she”): prin

admin2014-10-20  10

问题 阅读下列程序,给出运行结果。
#include
#include(string.h>
main(    )
{
char str[100]=”How do you do”:
strcpy(str+strlen(str)/2,“es she”):
print{(“%s\n”,str);
}

选项

答案HOW does she

解析 strlen(str)的值为13,strcpy(字符数组名1,字符数组名2),功能:把字符数组2中的字符串拷贝到字符数组1中。串结束标志”\0”也一同拷贝。字符数名2,也可以是一个字符串常量。这时相当于把一个字符串赋予一个字符数组。
转载请注明原文地址:https://jikaoti.com/ti/Gw9fFFFM
0

随机试题
最新回复(0)