strncat 连接某一长度的两个字符串

头文件

#include <string.h>

语法

char *strncat( char *str1, const char *str2, size_t count );

功能

将字符串 str2 中至多 count 个字符连接到字符串 str1 中,追加空值结束符,返回处理完成的字符串。

示例

#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("dest=|%s|", dest);

   return(0);
}

输出结果:

dest=|This is destinationThis is source|
关于
本网站专注于 Java、数据库(MySQL、Oracle)、Linux、软件架构及大数据等多领域技术知识分享。涵盖丰富的原创与精选技术文章,助力技术传播与交流。无论是技术新手渴望入门,还是资深开发者寻求进阶,这里都能为您提供深度见解与实用经验,让复杂编码变得轻松易懂,携手共赴技术提升新高度。如有侵权,请来信告知:hxstrive@outlook.com
公众号