how can shift element of array from one array to another
eg
i want to shift fist element of array1 to the least element to array2
e.g
eg
Code:
array1[] = {3,4,2,5}
array2[] = {7,8,9,3,4}
e.g
Code:
array1[] = {4,2,5,7}
array2[] = {8,9,3,4,3}
Comment