原 型:char *strncpy(char *s1, const char *s2, size_t n);
头 文 件:string.h
说 明:把s2指向的数组的前n个字符复制到s1所指向的数组中。如果在s2指向的数组中遇到一个空字符,那么strncpy函数为s1指向的数组添加空字符直到写完n个字符的总数量。
返 回 值:s1(指向目的的指针)。
相似函数:memcpy、memmove、strcpy