C Program To Merge Two Arrays
Merging two arrays means combining/concatenating the elements of both arrays into a single array. Example Input: arr1 = [1, 3, 5], arr2 = [2, 4, 6]Output: res = [1, 3, 5, 2, 4, 6]Explanation: The elements from both arrays are merged into a single array. Input: arr1 = [10, 40, 30], arr2 = [15, 25, 5]