In C language, strcpy() function is used to copy the content of one string to another string. It takes two arguments. This function is defined in header file <string.h>.
सी लैंग्वेज में strcpy() फंक्शन का प्रयोग एक स्ट्रींग को दूसरी स्ट्रींग में कॉपी करने के लिए किया जाता है। यह दो आर्गुमेंट ग्रहण करता है। यह फंक्शन string.h हैडर फाइल में परिभाषित है।
Syntax:-
char* strcpy("destination array","source array");
char* strcpy(char* d,char* s);
Example:-
char a[10]="computer";
char b[10];
strcpy(b,a);
Output:-
b=computer
C Program for strcpy() :-
#include<stdio.h>
#include<conio.h>
#include<string.h>
main() {
char a[20],b[20];
clrscr();
printf("Enter a string\n");
gets(a);
strcpy(b,a);
printf("Copy operation successful\nCopied string is =%s\n",b);
getch();
return 1;
}
Output:-
Enter a string
Computer
Copy operation successful
Copied string is = Computer
No comments:
Post a Comment