This
program copy string using library function strcpy, to copy string
without using strcpy see source code below in which we have made our own
function to copy string.
C program to copy a string
#include<stdio.h>
#include<string.h>
main()
{
char source[] = "C program";
char destination[50];
strcpy(destination, source);
printf("Source string: %s\n", source);
printf("Destination string: %s\n", destination);
return 0;
}
No comments:
Post a Comment