(Merge two sorted) Write the following function that merges two sorted lists into a new sorted list:
void merge(const int 1ist1[], int sizel, const int 1ist2[], int size2, int 1ist3[])
Implement the function in a way that takes size1 + size2 comparisons. Write a test program that prompts the user to enter two sorted lists and display the merged list. Here is a sample run. Note that the first number in the input indicates the number of the elements in the list. This number is not part of the list. Assume the maximum list size is 80.

We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.