Hi all,
I have to make a function which take as parameter two arrays and merge in one new.
For example
int array1[][] = {{1 , 2, 3, 4}, {2, 3, 4, 5}};
int array2[][] = {{5 , 6, 7, 8}, {6, 7, 8, 9}};
To take as result
arraynew[][] = {{1 , 2, 3, 4}, {2, 3, 4, 5},{5 , 6, 7, 8}, {6, 7, 8, 9};
Array1 and array2 have 4 columns but the can have more than 2 rows.
Could you help me ???
Please