用C语言实现编写程序,输入两个字符串,将两个字符串连接起来,不要用strcat函数,并输出连接后的字符串。 示例1: 输入:hellow world 输出:连接后字符串为:hellowworld
时间: 2024-02-27 12:53:58 浏览: 189
好的,请稍等,我来为您编写程序。
以下是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 循环分别将两个字符串复制到结果字符串中,最后再添加字符串结束符。运行程序后,输入两个字符串即可得到连接后的结果字符串。
相关问题
用c语言实现编写程序,输入两个字符串,将两个字符串连接起来,不要用strcat函数,并输出连接后的字符串。 示例1: 输入:hellow world 输出:连接后字符串为:hellowworld
好的,请稍等,我来为您编写程序。
以下是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 循环分别将两个字符串复制到结果字符串中,最后再添加字符串结束符。运行程序后,输入两个字符串即可得到连接后的结果字符串。
用C语言编写程序,将两个字符串连接起来,不要用strcat函数
可以用指针来实现字符串连接。
以下是一个简单的例子:
```c
#include <stdio.h>
void mystrcat(char *dest, const char *src) {
// 将 dest 指针移动到字符串末尾
while (*dest != '\0') {
dest++;
}
// 将 src 复制到 dest 的末尾
while (*src != '\0') {
*dest = *src;
dest++;
src++;
}
// 将字符串结束符添加到 dest 的末尾
*dest = '\0';
}
int main() {
char str1[100] = "Hello, ";
char str2[] = "world!";
mystrcat(str1, str2);
printf("%s\n", str1);
return 0;
}
```
输出:
```
Hello, world!
```
在上面的代码中,`mystrcat` 函数将 `src` 指向的字符串追加到 `dest` 指向的字符串的末尾。首先,它将 `dest` 指针移动到字符串末尾,然后将 `src` 复制到 `dest` 的末尾,最后添加字符串结束符到 `dest` 的末尾。
阅读全文