描述
C庫函數char *strncpy(char *dest, const char *src, size_t n)複製到n指向的字符串中的字符,由src至dest.如果 src 的長度小於 n 的長度,則 dest 的剩餘部分將填充空字節。
聲明
以下是 strncpy() 函數的聲明。
char *strncpy(char *dest, const char *src, size_t n)
參數
dest- 這是指向要複製內容的目標數組的指針。
src- 這是要複製的字符串。
n- 要從源複製的字符數。
返回值
此函數返回複製字符串的最終副本。
示例
下麵的例子展示了 strncpy() 函數的用法。這裏我們使用了函數 memset() 來清除內存位置。
#include <stdio.h>
#include <string.h>
int main () {
char src[40];
char dest[12];
memset(dest, '\0', sizeof(dest));
strcpy(src, "This is tutorialspoint.com");
strncpy(dest, src, 10);
printf("Final copied string:%s\n", dest);
return(0);
}
讓我們編譯並運行上麵的程序,將產生以下結果 -
Final copied string:This is tu
相關用法
- C語言 strncpy()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strncmp()用法及代碼示例
- C語言 strnset()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strtol()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strcat()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strncpy()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。