例如,以下是一个使用字符串拼接和换行的示例: #include <stdio.h> #include <string.h> int main() { char str1[100] = "Hello"; char str2[100] = "World"; strcat(str1, "\n"); strcat(str1, str2); printf("%s", str1); return 0; } 复制代码 输出结果为: Hello World 复制代码 在...