C++入门经典-例6.15-通过字符串函数连接两个字符数组

Posted 一串字符串

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++入门经典-例6.15-通过字符串函数连接两个字符数组相关的知识,希望对你有一定的参考价值。

1:代码如下

// 6.15.cpp : 定义控制台应用程序的入口点。
//


#include "stdafx.h"
#include <iostream>
using namespace std;
void main()
{
    char str1[50], str2[30], *p1, *p2;
    p1 = str1;
    p2 = str2;
    cout << "please input string1:" << endl;
    gets_s(str1);
    cout << "please input string2:" << endl;
    gets_s(str2);
    strcat_s(str1, str2);//对字符串也行,对数组也行
    cout << "the new string is:" << endl;
    puts(str1);
}
View Code

运行结果:

以上是关于C++入门经典-例6.15-通过字符串函数连接两个字符数组的主要内容,如果未能解决你的问题,请参考以下文章

C++入门经典-例6.20-修改string字符串的单个字符

C++入门经典-例6.21-比较string字符串,比较两个字符串

《入门经典》——6.15

《算法竞赛入门经典》小收获

《算法竞赛入门经典(第二版)》pdf

python编程语言入门经典100例--33