WAP to copy a string in to another. Get link Facebook X Pinterest Email Other Apps - March 06, 2017 Get link Facebook X Pinterest Email Other Apps Comments Anonymous12:18 PM#includevoid main(){char a[3],str[5];clrscr();printf(" enter the values of a=");gets(a);printf(" enter the values of str=");gets(str);strcpy(str,a);puts(a);puts(str);getch();}ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
#include
ReplyDeletevoid main()
{
char a[3],str[5];
clrscr();
printf(" enter the values of a=");
gets(a);
printf(" enter the values of str=");
gets(str);
strcpy(str,a);
puts(a);
puts(str);
getch();
}