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

C\C++ 中的 strcat() 函数 —— 字符串的插入、拼接

时间:2017-04-12 03:41:26      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:sdn   details   ret   内存   get   style   text   global   include   

转载链接:http://blog.csdn.net/smf0504/article/details/52055971

函数原型

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

函数用法

#include <string.h>
在 C++ 中,则存在于 <cstring> 头文件中。

函数功能

把 src 所指字符串添加到 dest 结尾处(覆盖 dest 结尾处的‘\0‘)。

函数说明

src 和 dest 所指内存区域不可以重叠且 dest 必须有足够的空间来容纳 src 的字符串。结果返回指向 dest 的指针。
 
Example
// strcat.c
#include <syslib.h>
#include <string.h>

int main()
{
    char d[20] = "GoldenGlobal";
    char* s = "View";
    clrscr();
    strcat(d,s);
    printf("%s",d);
    getchar();
    return 0;
}
// strcat.cpp
#include <iostream>
#include <cstring>
#include <cstdlib>

using namespace std;

int main()
{   
    char d[20] = "GoldenGlobal";
    char* s = "View";
    system("cls");
    strcat(d,s);
    cout << d << endl;
    system("pause");
    return 0;
}
程序执行结果为:GoldenGlobalView
 

C\C++ 中的 strcat() 函数 —— 字符串的插入、拼接

标签:sdn   details   ret   内存   get   style   text   global   include   

原文地址:http://www.cnblogs.com/sylar5/p/6696549.html

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