// con1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include using namespace std; #define SIZE 10 int main() { int num[SIZE]; int i; cout << "Enter ten integers:"; for (i = 0; i < SIZE; i++) cin >> num[i]; for (i = SIZE - 1; i >= 0; i--) cout << num[i] << " "; cout << endl; return 0; }