函数
<cstring>

strcpy

char * strcpy ( char * destination, const char * source );
复制字符串
source 指向的 C 字符串复制到 destination 指向的数组中,包括终止的空字符(并在该处停止)。

为避免溢出,destination 指向的数组的大小应足够容纳与 source 相同的 C 字符串(包括终止的空字符),并且不应与 source 在内存中重叠。

参数

destination
指向要复制内容的目标数组的指针。
source
要复制的 C 字符串。

返回值

返回 destination

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* strcpy example */
#include <stdio.h>
#include <string.h>

int main ()
{
  char str1[]="Sample string";
  char str2[40];
  char str3[40];
  strcpy (str2,str1);
  strcpy (str3,"copy successful");
  printf ("str1: %s\nstr2: %s\nstr3: %s\n",str1,str2,str3);
  return 0;
}

输出

str1: Sample string
str2: Sample string
str3: copy successful


另见