Answer:
Check the explanation
Explanation:
#include<iostream.h>
#include<stdlib.h>
void append(char* first,int n,char* second, int n1,char* result)
{
int i,j=0;
for(i=0;i<n;i++)
result[i]=first[i];
for(i=n;i<n1+n;i++)
{
result[i]=second[j];
j++;
}
}
void main()
{
char first[]={'I', ' ','a', 'm', ' '};
char second[]={'i', 'r', 'o', 'n', 'm', 'a', 'n','\0'};
char result[200];
append(first,5,second, 8, result);
cout<<result;
cout<<endl;
system("pause");
}