C 语言库函数 - strcat()
C 语言标准库 <string.h> 函数 char strcat(char dest, const char *src) 把 src 所指向的字符串追加到 dest 所指向的字符串的结尾
头文件
#include <string.h>
函数原型
下面是 strcat() 函数的原型
char *strcat(char *dest, const char *src)
参数
- dest: 指向目标数组,该数组包含了一个 C 字符串,且足够容纳追加后的字符串
- src: 指向要追加的字符串,该字符串不会覆盖目标字符串
返回值
该函数返回一个指向最终的目标字符串 dest 的指针。
范例
下面的范例演示了 strcat() 函数的用法
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> #include <string.h> int main () { char src[50], dest[50]; strcpy(src, "This is source"); strcpy(dest, "This is destination"); strcat(dest, src); printf("最终的目标字符串: |%s|", dest); return(0); }
编译运行以上范例,输出结果如下
$ gcc main.c && ./a.out 最终的目标字符串: |This is destinationThis is source|%