Linux C function() 參考手冊:strncpy(拷貝字串)
Linux C function() 參考手冊:strncpy(拷貝字串)
資料來源:http://people.cs.nctu.edu.tw/~yslin/library/linuxc/main.htm
線上執行:http://www.tutorialspoint.com/compile_c_online.php
code2html:http://tohtml.com/
相關函數
bcopy,memccpy,memcpy,memmove
表頭文件
#include<string.h>
定義函數
char * strncpy(char *dest,const char *src,size_t n);
函數說明
strncpy()會將參數src字符串拷貝前n個字符至參數dest所指的地址。
返回值
返回參數dest的字符串起始地址。
#include <string.h>
#include <stdio.h>
int main()
{
char a[30]="string(1)";
char b[]="XXXXXX(2)";
printf("before strncpy() : %s\n",a);
printf("after strncpy() : %s\n",strncpy(a,b,6));
return 0;
}