sherwin002 发表于 2014-9-22 15:30:27

C标准库之字符(串)函数 __strncpy

功能:

复制特定长度的字符串到另一个字符串中

函数原型:

char *strncpy(char * strDest,char*strSource,size_t count)

参数:

参数说明
strDest目的字符串
strSource源字符串
count复制的长度

返回值:
   目的字符串

要求:

函数需要的头文件
strncpy<string.h>

举例
#include<stdio.h>
#include<string.h>

int main()
{
      char str[]="Hello",ss[]="Welcome to China",*p;
      p = strncpy(str,ss,5);
      printf("%s\n%s",str,p);
      getchar();
      return 0;
}
结果:




鱼C侦探团
页: [1]
查看完整版本: C标准库之字符(串)函数 __strncpy