码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-09-17 13:45:22      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:string   连接   ase   isp   str   one   std   div   字符   

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-通过字符串函数连接两个字符数组

标签:string   连接   ase   isp   str   one   std   div   字符   

原文地址:http://www.cnblogs.com/lovemi93/p/7534829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!