C 庫函數(shù) - strncpy()

C 標準庫 - <string.h> C 標準庫 - <string.h>

描述

C 庫函數(shù) char *strncpy(char *dest, const char *src, size_t n)src 所指向的字符串復制到 dest,最多復制 n 個字符。當 src 的長度小于 n 時,dest 的剩余部分將用空字節(jié)填充。

聲明

下面是 strncpy() 函數(shù)的聲明。

char *strncpy(char *dest, const char *src, size_t n)

參數(shù)

  • dest -- 指向用于存儲復制內(nèi)容的目標數(shù)組。
  • src -- 要復制的字符串。
  • n -- 要從源中復制的字符數(shù)。

返回值

該函數(shù)返回最終復制的字符串。

實例

下面的實例演示了 strncpy() 函數(shù)的用法。在這里,我們使用函數(shù) memset() 來清除內(nèi)存位置。

#include <stdio.h>
#include <string.h>

int main()
{
   char src[40];
   char dest[12];
  
   memset(dest, '\0', sizeof(dest));
   strcpy(src, "This is w3cschool.cn");
   strncpy(dest, src, 10);

   printf("最終的目標字符串: %s\n", dest);
   
   return(0);
}

讓我們編譯并運行上面的程序,這將產(chǎn)生以下結(jié)果:

最終的目標字符串: This is w3

C 標準庫 - <string.h> C 標準庫 - <string.h>