Friday, 17 February 2012

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