#include <stdio.h>
#include <string.h>
int main()
{
char str1[10]= "hello";
char str2[10];
char str3[10];
strcpy(str2, str1);
strcpy(str3, "world");
puts(str2);
puts(str3);
return 0;
}
#include <string.h>
int main()
{
char str1[10]= "hello";
char str2[10];
char str3[10];
strcpy(str2, str1);
strcpy(str3, "world");
puts(str2);
puts(str3);
return 0;
}