编写程序,实现两个字符串连接,不要用strcat函数。
时间: 2023-06-06 15:04:54 浏览: 170
编一程序,将两个字符串连接起来,不要用strcat函数.cpp
5星 · 资源好评率100%
可以使用字符串指针来实现两个字符串的连接,具体代码如下:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str1[50] = "Hello ";
char str2[50] = "world!";
char *p1 = str1 + strlen(str1);
char *p2 = str2;
while(*p2 != '\0')
{
*p1++ = *p2++;
}
*p1 = '\0';
cout << "连接后的字符串为:" << str1 << endl;
return 0;
}
```
输出结果为:
```
连接后的字符串为:Hello world!
```
阅读全文