Question: Write a C ++ program which takes two arrays of the size of 5 integers each: arrA and arr . The user should enter the
Write a C ++ program which takes two arrays of the size of 5 integers each: arrA and arr. The user should enter the values of those arrays. Then, create a thir array arrC an integer array of size 10 that should contain the items of both arrays. Your program should insert into arrC the values of arrA and arrB in order. Then the program will display arrC elements.
Task#2: concatenating Two Arrays Expected Solving Time: 15 minutes Write a C++ program which takes two arrays of the size of 5 integers each: arrA and arr. The a user should enter the values of those arrays. Then, create a thir array arr an integer array of size 10 that should contain the items of both arrays. Your program should insert into arr the values of arrA and arrB in order. Then the program will display arr elements. Run Sample: First: items of array (arrA): Enter item 0 of (arrA): 5 Array arrc items are: Enter item 1 of (arrA): 1 Enter item 2 of (arrA): 3 Enter item 3 of (arrA): 8 3 Enter item 4 of (arrA): 10 8 Second: items of array (arrB): 10 Enter item 0 of (arrB): 2 2 Enter item 1 of (arrB): 7 7 Enter item 2 of (arrB): 9 9 Enter item 3 of (arrB): 11 11 Enter item 4 of (arrB): 13 13 W NB Wpu
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
