C语言实现编写连接两个字符串的函数,并调用此函数连接两个字符串
时间: 2023-12-26 21:05:53 浏览: 322
以下是C语言实现连接两个字符串的函数,并调用此函数连接两个字符串的示例代码:
```c
#include <stdio.h>
#include <string.h>
void mystrcat(char *dest, const char *src) {
while (*dest) {
dest++;
}
while (*src) {
*dest++ = *src++;
}
*dest = '\0';
}
int main() {
char str1[20] = "Hello, ";
char str2[] = "world!";
mystrcat(str1, str2);
printf("%s\n", str1); // 输出:Hello, world!
return 0;
}
```
阅读全文