用c语言实现编写程序,输入两个字符串,将两个字符串连接起来,不要用strcat函数,并输出连接后的字符串。 示例1: 输入:hellow world 输出:连接后字符串为:hellowworld
时间: 2024-02-27 17:53:56 浏览: 144
编一程序,将两个字符串连接起来,不要用strcat函数.cpp
5星 · 资源好评率100%
好的,请稍等,我来为您编写程序。
以下是C语言的代码实现:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char str1[100], str2[100], result[200];
int i, j;
printf("请输入第一个字符串:");
scanf("%s", str1);
printf("请输入第二个字符串:");
scanf("%s", str2);
// 将第一个字符串复制到结果字符串中
for (i = 0; str1[i] != '\0'; i++) {
result[i] = str1[i];
}
// 将第二个字符串复制到结果字符串中
for (j = 0; str2[j] != '\0'; j++) {
result[i + j] = str2[j];
}
// 添加字符串结束符
result[i + j] = '\0';
printf("连接后字符串为:%s\n", result);
return 0;
}
```
以上代码中,我们通过两个 for 循环分别将两个字符串复制到结果字符串中,最后再添加字符串结束符。运行程序后,输入两个字符串即可得到连接后的结果字符串。
阅读全文