C语言 <string.h> strncat 函数
-
描述
C库函数char *strncat(char *dest, const char *src, size_t n)将src指向的字符串追加到dest指向的字符串的末尾,最多n个字符。 -
声明
以下是strncat函数的声明。char *strncat(char *dest, const char *src, size_t n)
参数- dest-这是指向目标数组的指针,该目标数组应包含一个C字符串,并且应足够大以包含连接的结果字符串,该字符串包括附加的空字符。
- src-这是要附加的字符串。
- n-这是要附加的最大字符数。
-
返回值
此函数返回指向结果字符串dest的指针。示例以下示例显示strncat函数的用法-
尝试一下#include <stdio.h> #include <string.h> int main () { char src[50], dest[50]; strcpy(src, "This is source"); strcpy(dest, "This is destination"); strncat(dest, src, 15); printf("Final destination string : |%s|", dest); return(0); }
让我们编译并运行上面的程序,它将产生以下结果。Final destination string : |This is destinationThis is source|