Program to copy string using user defined function


#include<stdio.h>
#include<conio.h>
#include<string.h>

main()
{
 char str1[25],str2[25];
 int i,j;
 clrscr();

 printf(" enter the string \n");
 gets(str1);
 j=strlen(str1);

 for(i=0;i<j;i++)
 {
  str2[i]=str1[i];
 }
 str2[i]='\0';
 printf("\n the copied string is \n");
 puts(str2);

 getch();
}

0 comments:

Post a Comment