用strcat函数将两个字符串连接起来
时间: 2023-12-15 17:46:49 浏览: 116
Sure! 您可以使用strcat函数将两个字符串连接起来。```char str1[20] = "Hello"; char str2[20] = "World"; strcat(str1, str2); printf("%s", str1);``` 意思是将"World"连接到"Hello"的后面,输出结果是"HelloWorld"。
相关问题
C语言用strcat函数将两个字符串连接起来
可以使用 strcat 函数将两个字符串连接起来,例如:
```c
char str1[20] = "hello";
char str2[20] = "world";
strcat(str1, str2);
printf("%s\n", str1); // 输出 "helloworld"
```
编写一个用strcat函数将两个字符串合并到一个字符串里面
char *strcat(char *dest, const char *src) {
size_t i,j;
for (i = 0; dest[i] != '\0'; i++)
;
for (j = 0; src[j] != '\0'; j++)
dest[i+j] = src[j];
dest[i+j] = '\0';
return dest;
} 用strcat函数将两个字符串合并到一个字符串里面:char *strcat(char *dest, const char *src),其中dest为目标字符串,src为源字符串,即可将源字符串复制到目标字符串后面,最后在目标字符串末尾添加'\0'字符来标识字符串的结束。
阅读全文