What is the function of strcpy function?

藏色散人
Release: 2020-11-17 13:50:30
Original
36068 people have browsed it

strcpy函数的作用是复制字符串,strcpy函数的声明是“char *strcpy(char *dest, const char *src)”,表示把src所指向的字符串复制到dest。

What is the function of strcpy function?

推荐:《c语言教程

strcpy函数的作用是复制字符串

C 库函数 char *strcpy(char *dest, const char *src) 把 src 所指向的字符串复制到 dest。

需要注意的是如果目标数组 dest 不够大,而源字符串的长度又太长,可能会造成缓冲溢出的情况。

声明

下面是 strcpy() 函数的声明。

char *strcpy(char *dest, const char *src)
Copy after login

参数

dest -- 指向用于存储复制内容的目标数组。

src -- 要复制的字符串。

返回值

该函数返回一个指向最终的目标字符串 dest 的指针。

实例

下面的实例演示了 strcpy() 函数的用法。

实例 1

#include <stdio.h>
#include <string.h>
int main()
{
   char src[40];
   char dest[100];
  
   memset(dest, &#39;\0&#39;, sizeof(dest));
   strcpy(src, "This is runoob.com");
   strcpy(dest, src);
 
   printf("最终的目标字符串: %s\n", dest);
   
   return(0);
}
Copy after login

让我们编译并运行上面的程序,这将产生以下结果:

最终的目标字符串: This is runoob.com

实例 2

#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;
}
Copy after login

让我们编译并运行上面的程序,这将产生以下结果:

str1: Sample string
str2: Sample string
str3: copy successful
Copy after login

The above is the detailed content of What is the function of strcpy function?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template