C字符串函数strncpy
当前位置:以往代写 > C/C++ 教程 >C字符串函数strncpy
2019-06-13

C字符串函数strncpy

C字符串函数strncpy

原型:extern char *strncpy(char *dest, char *src, int n);

用法:#include <string.h>

成果:把src所指由NULL竣事的字符串的前n个字节复制到dest所指的数组中。

说明:

假如src的前n个字节不含NULL字符,则功效不会以NULL字符竣事。

假如src的长度小于n个字节,则以NULL填充dest直到复制完n个字节。

src和dest所指内存区域不行以重叠且dest必需有足够的空间来容纳src的字符串。

返回指向dest的指针。

举例:

// strncpy.c

#include <syslib.h>
#include <string.h>
main()
{
 char *s="Golden Global View";
 char *d="Hello, GGV Programmers";
 char *p=strdup(s);

 clrscr();
 textmode(0x00); // enable 6 lines mode

 strncpy(d,s,strlen(s));
 printf("%s\n",d);

 strncpy(p,s,strlen(d));
 printf("%s",p);

 getchar();
 return 0;
}

相关函数:memccpy,memcpy,stpcpy,strcpy

    关键字:

在线提交作业