#include <stdio.h>
#include <string.h>
int main()
{
char s[10] = "hello";
printf("%s\n", strcpy(s, s + 1));
printf("%s\n", s);
return 0;
}
打印结果是:
ello
ello
这个我理解,把ello\0
往前复制了。
#include <stdio.h>
#include <string.h>
int main()
{
char s[10] = "hello";
printf("%s\n", strcpy(s + 1, s));
printf("%s\n", s);
return 0;
}
打印结果却是:
helll
hhelll
这个hhelll
我就不理解了。不应该是hhello
吗
本来想试一下 strcpy 的行为,自己写个实现。但现在它的行为我不理解了。
vs2019 试的,需要按照 https://blog.csdn.net/oguro/article/details/52685662 添加宏才能运行。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.