#include <iostream>
#include <cstring> //strcat()函数,依赖于cstring
#include <string>
using namespace std;
int main() {
char str1[30], str2[20];
cout<<"Please input string1: ";
cin>>str1; //书中案例代码中忘了写cin
scanf("%s", str1); //gets()函数已经不支持了
cout<<"Please input string2:" ;
cin>>str2;
scanf("%s",str2);
strcat(str1, str2);
cout <<"Now the string1 is :" <<endl;
puts(str1);
}
《C++从入门到精通(第5版)》P118 实例7.5(fedora上修改)
最新推荐文章于 2023-08-08 15:52:40 发布
该C++代码示例展示了如何使用cstring库中的strcat函数将两个字符串拼接在一起。用户输入两个字符串,然后strcat函数将str2连接到str1的末尾,最后输出合并后的str1。
摘要由CSDN通过智能技术生成