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

C/C++字符串使用整理

时间:2019-05-03 14:44:18      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:extern   space   mamicode   图片   class   world   mil   pretty   png   

strcat 函数

功能

strcat 函数釆用两个字符串作为形参并连接它们,返回由第一个字符串和第二个字符串的所有字符组成的单个字符串

 

函数原型   

     extern char *strcat(char *dest, const char *src);

 

参数说明

     dest指向目标数组

   src指向要追加的字符串

 

在C中,使用strcat函数需要加上头文件<string.h>

在我们使用strcat函数时,要注意

strcat函数的返回值是指针dest指向的字符串

样例

#include<iostream>
#include<string.h>
using namespace std;
int main()
{
char a[10] ="hello";
char b[10] ="world";
strcat(a,b);
cout<<a;
return 0;
}

 

输出结果

技术图片

 

 




C/C++字符串使用整理

标签:extern   space   mamicode   图片   class   world   mil   pretty   png   

原文地址:https://www.cnblogs.com/lqa00/p/10804955.html

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