write a program to input the number of element can hold the first array with the values and also do the same for the second array. concatenate both the array to form the third array and print the third party
Answers
Answered by
5
Input : arr1[] = {1, 2, 3, 4, 5, 6}
arr2[] = {11, 22, 33, 44}
Output: {1, 11, 2, 22, 3, 33, 4, 44, 5, 6}
Input : arr1[] = {1, 2, 3, 4, 5, 6, 7, 8}
arr2[] = {11, 22, 33, 44}
Output: {1, 11, 2, 22, 3, 33, 4, 44, 5, 6,
Answered by
2
Answer:
Sorry!!
Explanation:
For Which class and from which book is this !??
Similar questions