标签:title c函数 %s stdio.h tis .com pid ini bar
函数原型:extern char *strncat(char *dest,char *src,int n)
参数说明:src为源字符串,dest为目的字符串,n为指定的src中的前n个字符。
所在库名:#include <string.h>
函数功能:把src所指字符串的前n个字符添加到dest结尾处,覆盖dest结尾处的‘/0‘,实现字符串连接。
返回说明:返回指针,连接后的字符串。
其它说明:暂时无。
实例:
在VC++ 6.0 编译运行:
实现了指定某个字符串中的字符连接到另一个字符串上的操作。
返回指向d的指针。
标签:title c函数 %s stdio.h tis .com pid ini bar
原文地址:https://www.cnblogs.com/yanzi-meng/p/9179286.html