将两个字符串连接起来,不要用 strcat 函数。流程图
时间: 2023-12-15 19:32:15 浏览: 133
以下是将两个字符串连接起来的C语言代码,不使用strcat函数:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str1[100], str2[100];
int i, j;
printf("请输入第一个字符串:");
scanf("%s", str1);
printf("请输入第二个字符串:");
scanf("%s", str2);
i = strlen(str1);
for (j = 0; str2[j] != '\0'; i++, j++) {
str1[i] = str2[j];
}
str1[i] = '\0';
printf("连接后的字符串为:%s\n", str1);
return 0;
}
```
流程图如下:
```
开始
输入第一个字符串
输入第二个字符串
计算第一个字符串长度
将第二个字符串连接到第一个字符串后面
输出连接后的字符串
结束
```
阅读全文