Array
Array
Write a program in C++ to Copy the elements of one array into another
array.
Test Data :
Input the number of elements to be stored in the array :3
Input 3 elements in the array :
elem[ent - 0 : 15
element - 1 : 10
element - 2 : 12
Expected Output :
The elements stored in the first array are :
15 10 12
The elements copied into the second array are :
15 10 12