Question: Please help me with this! Write a function called combineArraysnt. int, int, int) that accepts in two arrays of ints and the size of the
Please help me with this!

Write a function called combineArraysnt. int, int, int) that accepts in two arrays of ints and the size of the arrays as parameters. The function should then create a new array that is the size of both array combined. The function should copy the elements from the rst array into the new array, followed by all the elements from the second array. 50 if the initial array is {123.45} and the second arrray is {1020,30} then the new array will be size 8 and contain {1,2,3,4,5,10,20,30}. Then in your maint), create two arrays of different sizes, each at least size 10, and fill them with integers's. Run the arrays through your function created above and print out all three arrays to demonstrate that the concatenation method worked. Then run your method again using the same two original arrays, but in the other order. 50 if the first time you did array a then array b, the second time do array b then array a. Make sure to delete the new arrays before closing your program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
