函數名: strncat
頭檔: <string.h>
函數原型: char *strncat(char *destin,char *str,int n);
功 能: 在字串尾部追加,即將一個字串的指定數量的字元加到另一個字串的後面
參 數: char *destin 追加的目標字串
char *str 要追加的來源字串
int n 追加的字元數
傳回值: 傳回destin字串的起始位址
註 意: 字串destin必須有足夠的空間來容納新加入的字串
程式例: 在字串destin後面加入字串str的前n個字符
#include<stdio.h>#include<string.h>intmain(void){chardestin[30]=Ilike;char*str=www.dotcpp.comverymuch;intn=14;char*newStr=strncat(destin,str, n);printf(%sn,newStr);return0;}
運行結果:
Ilikewww.dotcpp.com