zj@zj:~/C_parm/string/own_str/strncpy$ cat strncpy.c /*Copies count characters from the source string to the destination.
* If count is less than the length of source,NO NULL CHARACTER is put
* onto the end of the copied string.If count is greater than the length
*of sources, dest is padded with null characters to length count.
*
* 把src所指由NULL结束的字符串的前n个字节复制到dest所指的数组中.如果src的
* 前n个字节不含NULL字符,则结果不会以NULL字符结束;
*如果src的长度小于n个字节,则以NULL填充dest直到复制完n个字节。
*src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串
*返回指向dest的指针.
*/ #include<stdio.h> #include<stdlib.h> #include<string.h>