运行 ❯
获得您
自己
的网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <stdio.h> #include <string.h> int main() { char str1[] = "Hello World!"; char str2[] = "Write code!"; strncpy(str2, str1, 6); printf("%s\n", str1); printf("%s\n", str2); return 0; }
你好,世界!
你好,代码!