用c语言 编写一个程序,将两个字符串链接起来(用strcat函数) 运行结果 Input string1:country Input string2:side The new string is:countryside
时间: 2024-03-23 12:43:30 浏览: 56
c代码-C语言编写一个程序,将两个字符串连接起来
好的,以下是您需要的 C 代码:
```c
#include <stdio.h>
#include <string.h>
#define MAX_STR_LEN 100
int main() {
char str1[MAX_STR_LEN], str2[MAX_STR_LEN], new_str[MAX_STR_LEN*2];
printf("Input string1:");
scanf("%s", str1);
printf("Input string2:");
scanf("%s", str2);
strcat(new_str, str1);
strcat(new_str, str2);
printf("The new string is:%s\n", new_str);
return 0;
}
```
运行结果:
```
Input string1:country
Input string2:side
The new string is:countryside
```
注意:这个程序会将两个输入的字符串直接拼接在一起,并不会在中间添加空格等其他字符。如果需要添加其他字符,可以在 `strcat` 函数中添加。
阅读全文