位置:首頁 > 高級語言 > C語言標準庫 > strncat() - C語言庫函數

strncat() - C語言庫函數

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|