C语言中的strcat()函数

头文件:

#include 
函数原型:

char *strcat (char *dest,const char *src)
函数描述:

strcat()会将参数src字符串拷贝到参数dest所指的字符串尾,第一个参数dest要有足够的空间来容纳要拷贝的字符串;

返回值:

返回dest字符串参数的起始地址;

例子:

#include 
#include 

int main(void)
{
    char dest[30] = "Hello";
    char src[] = "World";

    strcat(dest, src);
    printf("dest:[%s]\n", dest);

    return 0;
}
得到的结果是:dest:[HelloWorld]



参考:http://blog.chinaunix.net/uid-26914516-id-4215338.html

你可能感兴趣的:(C语言)