0
Create a loop and in that keep adding letters of two arrays. I'm not sure about my C++ syntax. //This is just an example snippet. x = 6; //Length of char arrays. Both should be same. j = 0; for(i=0; i<(x*2);i+=2){ result[i] = input1[j]; result[i+1] = input2[j]; j++; }
16th Nov 2016, 7:11 AM
Nagendra Prajwal
Nagendra Prajwal - avatar