C String Copy

In this section, you will learn how to copy the string in C. You can see in
the given example, two string variables st1 and st2 are created. A string is
passed to the st1. Then we have used the library function strcpy() provided by
the header file <string.h> that will copy the specified string from
st1 to st2.
Here is the code:
StringCopy.c
#include <stdio.h>
#include <conio.h>
#include <string.h>
int main() {
char st1[]="Hello World";
char st2[20];
clrscr();
strcpy(st2, st1);
printf("st1= %s\n st2= %s\n", st1, st2);
getch();
return 0;
}
|
Output will be displayed as:
STRING~1.EXE

Download Source Code:

|