运行 ❯
获取
您自己的
网站
×
切换方向
切换主题、深色/浅色
转到 Spaces
#include <iostream> #include <cstring> using namespace std; int main() { char str1[] = "Hello World!"; char str2[] = "Write code!"; strncpy(str2, str1, 6); cout << str1 << "\n"; cout << str2 << "\n"; return 0; }
你好,世界!
你好,代码!