运行 ❯
获取
您自己的
网站
×
更改方向
更改主题,亮暗
转至 Spaces
#include <stdio.h> #include <string.h> int main() { char str1[20] = "Hello "; char str2[] = "World!"; // Concatenate str2 to str1 (the result is stored in str1) strcat(str1, str2); // Print str1 printf("%s", str1); return 0; }
你好,世界!