把字符数组接入另一个字符数组
时间: 2024-06-13 14:07:33 浏览: 138
如何插入字符串到另一个字符串里面
可以使用strcpy()函数将一个字符数组接入另一个字符数组。该函数的格式为:
```c
char *strcpy(char *dest, const char *src);
```
其中,dest是目标字符数组,src是源字符数组。该函数将src中的字符串复制到dest中,并返回dest。需要注意的是,目标字符数组dest必须足够大,以容纳源字符数组src中的字符串。
下面是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "hello";
char str2[20] = "world";
printf("Before: str1 = %s, str2 = %s\n", str1, str2);
strcpy(str1, str2);
printf("After: str1 = %s, str2 = %s\n", str1, str2);
return 0;
}
```
输出结果为:
```
Before: str1 = hello, str2 = world
After: str1 = world, str2 = world
```
阅读全文