HomeCoding You are given a list of N integers and you need to reverse it and print the reversed list in a new line. Tuesday, September 21, 2021 0 You are given a list of N integers and you need to reverse it and print the reversed list in a new line. OURSHOPKEEPER #include <iostream>using namespace std;int main(){ int n; cin >> n; int a[n]; for (int i = 0; i < n; i++) { cin >> a[i]; } for (int i = n-1; i >= 0; i--) { cout << a[i]<<" "; }} Click on the above button to download the code. Tags Coding cpp Facebook Twitter