编写一个程序,将两个字符串连接起来,用strcat函数
时间: 2023-12-15 16:52:37 浏览: 76
c代码-C语言编写一个程序,将两个字符串连接起来
好的,您可以使用以下代码实现:
```c
#include <stdio.h>
#include <string.h>
int main() {
char s1[100], s2[100];
printf("请输入第一个字符串:");
scanf("%s", s1);
printf("请输入第二个字符串:");
scanf("%s", s2);
strcat(s1, s2);
printf("连接后的字符串为:%s", s1);
return 0;
}
```
这个程序会要求您输入两个字符串,然后使用 `strcat` 函数将它们连接起来,并输出连接后的字符串。需要注意的是,为了避免缓冲区溢出,您需要确保两个字符串的总长度不超过数组的容量。
阅读全文