void concat()
{
char str1[29];
char str2[29];
char str3[29];
for(p=0;p<5;p++ )
{
cout<<"Enter string1;
cin>> str1[p];
}
for(q=0;q<5;q++ )
{
cout<<"Enter string2;
cin>> str2[q];
}
for(int i=0,j=0;str1[i]!='\0';i++,j++)
str3[i++]=str1[j++];
for(int...
Leave a comment: