Monday, September 17, 2012

Code#68: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;
}

0 comments:

Post a Comment

Powered by Blogger.