Answer:
The function in C++ is as follows:
void combineArrays(int arr1[], int len1, int arr2[], int len2){
int* arr = new int[len1+len2];
for(int i =0;i<len1;i++){
arr[i] = arr1[i]; }
for(int i =0;i<len2;i++){
arr[len1+i] = arr2[i]; }
for(int i=0;i<len1+len2;i++){
cout<<arr[i]<<" "; }
delete[] arr; }
Explanation:
This defines the function
void combineArrays(int arr1[], int len1, int arr2[], int len2){
This creates a new array
int* arr = new int[len1+len2];
This iterates through the first array.
for(int i =0;i<len1;i++){
The elements of the first array is entered into the new array
arr[i] = arr1[i]; }
This iterates through the second array.
for(int i =0;i<len2;i++){
The elements of the second array is entered into the new array
arr[len1+i] = arr2[i]; }
This iterates through the new array
for(int i=0;i<len1+len2;i++){
This prints the new array
cout<<arr[i]<<" "; }
This deletes the new array
delete[] arr; }
See attachment for complete program which includes the main