2)Complete the following program that uses two arrays. array 1 contents will be read from the user. array 2 contents wil
Posted: Fri Apr 29, 2022 6:52 am
2)Complete the following program that uses two arrays. array 1 contents will be read from the user. array 2 contents will be the array 1 contents plus 5 for each element. #include <iostream> using namespace std; int main() { int Array1[10]; int Array2[10] return 0; }