strcat函数的使用方法
时间: 2024-01-20 07:16:04 浏览: 86
strcat 函数的使用指南
5星 · 资源好评率100%
strcat函数用于将一个字符串追加到另一个字符串的末尾。它的函数声明如下:
```c
char *strcat(char *_Destination, const char *_Source)
```
其中,_Destination是目标字符串,_Source是要追加的字符串。
下面是一个使用strcat函数的示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char arr1[30] = "hello";
char arr2[] = "world";
strcat(arr1, arr2);
printf("%s\n", arr1); // 输出:helloworld
return 0;
}
```
在这个示例中,我们首先定义了两个字符数组arr1和arr2,分别存储了字符串"hello"和"world"。后,我们使用strcat函数将arr2追加到arr1的末尾,结果将存储在arr1中。最后,我们使用printf函数打印出合并后的字符串"helloworld"。
阅读全文