C++ char数组批量添加
时间: 2023-10-08 13:14:44 浏览: 195
可以使用strcpy函数将一个字符串复制到另一个字符数组中,如下所示:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "hello";
char str2[20] = "world";
char str3[40];
strcpy(str3, str1); // 将str1复制到str3中
strcat(str3, " "); // 将空格添加到str3中
strcat(str3, str2); // 将str2添加到str3中
printf("%s\n", str3); // 输出结果为"hello world"
return 0;
}
```
在上面的例子中,首先声明了三个字符数组,然后使用strcpy函数将str1复制到str3中,接着使用strcat函数将空格和str2添加到str3中,最后输出结果为"hello world"。可以根据需求修改字符数组和添加的内容。
阅读全文