当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 strcpy()用法及代码示例


C库函数char *strcpy(char *dest, const char *src)复制指向的字符串,由srcdest

字符数组称为字符串。

声明

以下是数组的声明

char stringname [size];

例如 - char string[50];长度为 50 个字符的字符串

初始化

  • 使用单字符常量 -
char string[10] = { ‘H’, ‘e’, ‘l’, ‘l’, ‘o’ ,‘\0’}
  • 使用字符串常量 -
char string[10] = "Hello":;

Accessing− 有一个控制字符串 "%s" 用于访问字符串直到遇到‘\0’

strcpy() 函数

  • 该函数用于将源字符串复制到目标字符串中。

  • 目标字符串的长度大于或等于源字符串。

用法

语法如下 -

strcpy (Destination string, Source String);

示例

下面的例子展示了 strcpy() 函数的用法。

char a[50]; char a[50];
strcpy ("Hello",a); strcpy ( a,"hello");
output:error output:a= "Hello"

程序

下面的程序显示了 strcpy() 函数的用法。

#include <string.h>
main ( ){
   char a[50], b[50];
   printf ("enter a source string");
   scanf("%s", a);
   strcpy ( b,a);
   printf ("copied string = %s",b);
   getch ( );
}

输出

执行上述程序时,会产生以下结果 -

Enter a source string:Hello
Copied string = Hello

让我们看另一个关于 strcpy 的例子。

下面给出的是一个演示 strcpy 库函数的 C 程序 -

程序

#include<stdio.h>
#include<string.h>
void main(){
   //Declaring source and destination strings//
   char source[25],destination[50];
   //Reading Input from user//
   printf("Enter the string to be copied:");
   gets(source);
   printf("Enter the existing destination string:");
   gets(destination);
   //Using strcpy library function//
   strcpy(destination,source);
   //Printing destination string//
   printf("Destination string is:");
   puts(destination);
}

输出

执行上述程序时,会产生以下结果 -

Enter the string to be copied:C programming
Enter the existing destination string:bhanu
Destination string is:C programming

相关用法


注:本文由纯净天空筛选整理自Bhanu Priya大神的英文原创作品 What is strcpy() Function in C language?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。