Is there a way of printing arrays in C++?
I\'m trying to make a function that reverses a user-input array and then prints it out. I tried Googling this problem and i
This might help //Printing The Array
for (int i = 0; i < n; i++) {cout << numbers[i];}
n is the size of the array