Friday, January 17, 2020

C Copy String: strcpy()

The strcpy(destination, source) function copies the source string in destination.


#include<stdio.h>
#include <string.h>
int main(){
char ch[20]={'a','n','m','o','l','k','n','o','w','l','e','d','g','e', '\0'};
char ch2[20];
strcpy(ch2,ch);
printf("Value of second string is: %s",ch2);
return 0;
}

 
Output:

Value of second string is: anmolknowledge

No comments:

Post a Comment