Concate two strings in such a way that 1st letter of 1st string should b placed together and 2nd to 2nd and so on until you reach null
Answers
Answered by
0
void main() {
int A[10], B[10], C[20];
for(int i =0,int j=0, int k=0;i<20;k++) {
if (k%2==0) A[i]=C[k]; i++; else B[j]=C[k]; j++; }
{
Similar questions