sherwin002 发表于 2014-9-18 10:16:42

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

本帖最后由 sherwin002 于 2014-9-24 08:27 编辑

功能:

       用于对字符串进行复制

函数原型:

   char * strcpy(char*strDestination,const char*strSource);

参数:


参数   说明
Destination   目的字符串
Source    源字符串

返回值:
   目的字符串
要求:

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

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

int main()
{
      char str = "Hello",ss = "Welcomt To China",*p;
      p = strcpy(str,ss);
      printf("%s,\n%s",str,p);
      getchar ();
      return 0;
}


结果:



如有任何问题:请联系小红鱼QQ:22983317,不胜感激:shy:
鱼C侦探团
页: [1]
查看完整版本: C标准库之字符(串)函数_strcpy