写一个函数,将两个字符串连接的c语言代码
时间: 2024-05-10 07:16:38 浏览: 121
下面是将两个字符串连接的 C 语言代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[100], str2[100];
printf("Enter the first string: ");
scanf("%s", str1);
printf("Enter the second string: ");
scanf("%s", str2);
strcat(str1, str2);
printf("Concatenated string: %s\n", str1);
return 0;
}
```
这个程序先让用户输入两个字符串,然后使用 `strcat` 函数将它们连接起来,并输出结果。注意,`strcat` 函数会将第二个字符串拼接到第一个字符串的末尾,所以第一个字符串必须具有足够的空间来容纳两个字符串的组合。
阅读全文