编写一个程序,将两个字符串连接起来,不要用strcat函数。
时间: 2023-04-24 10:07:32 浏览: 102
编一程序,将两个字符串连接起来,不要用strcat函数.cpp
5星 · 资源好评率100%
可以使用循环遍历两个字符串,将第一个字符串的每个字符依次存入一个新的字符串中,再将第二个字符串的每个字符依次存入新的字符串中,最后输出新的字符串即可。
示例代码:
```
#include <stdio.h>
int main() {
char str1[100], str2[100], newStr[200];
int i, j;
printf("请输入第一个字符串:");
scanf("%s", str1);
printf("请输入第二个字符串:");
scanf("%s", str2);
// 将第一个字符串存入新的字符串中
for (i = ; str1[i] != '\'; i++) {
newStr[i] = str1[i];
}
// 将第二个字符串存入新的字符串中
for (j = ; str2[j] != '\'; j++) {
newStr[i + j] = str2[j];
}
// 添加字符串结束符
newStr[i + j] = '\';
printf("连接后的字符串为:%s\n", newStr);
return ;
}
```
阅读全文