Write a function that will merge the contents of 2 sorted (ascending order) arra
ID: 3763412 • Letter: W
Question
Write a function that will merge the contents of 2 sorted (ascending order) arrays of type double values, storing the result in an array of output parameter (still in ascending order). Thefunction should not assume that both its input parameter arrays are the same length but can assume that one array does not contain 2 copies of the same value. The result array should aslo contain no duplicate values.
When one of the input arrays has been exhausted, do not forget to copy the remaining data in the other array into the result array. Test your function with cases in which 1) the fisrt array exhausted first, 2) the second array is exhausted first, 3) the 2 arrays a exhausted at the same time(ie, they end with the same value). Remember that arrays input to this function must already be sorted.
**C not C++
Explanation / Answer
#include void merge(int [], int, int [], int, int []); int main() { int a[100], b[100], m, n, c, sorted[200]; printf("Input number of elements in first array "); scanf("%d", &m); printf("Input %d integers ", m); for (c = 0; cRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.