Cにおけるstrncat()関数
690 ワード
関数プロトタイプ:extern char*strncat(char*dest,char*src,int n)
パラメータの説明:srcはソース文字列、destは目的文字列、nは指定したsrcの最初のn文字です.所在庫名:#include関数機能:srcで指す文字列の前のn文字をdestの末尾に追加し、destの末尾の'/0'を上書きし、文字列接続を実現する.説明を返す:ポインタ、接続された文字列を返します.
例:
出力は:This string strtemp is:SKY 2098,YOUare the hero!
パラメータの説明:srcはソース文字列、destは目的文字列、nは指定したsrcの最初のn文字です.所在庫名:#include
例:
#include <stdio.h>
#include <string.h>
int main()
{
char str[100] = "SKY2098, YOU";
char *str2 = "are the hero!but iuu";
int n = 15;
char *strtemp;
strtemp = strncat(str, str2, 13 );
printf("This string strtemp is: %s
", strtemp);
return 0;
}
~
出力は:This string strtemp is:SKY 2098,YOUare the hero!