// read 5 ints into array of ints and then print in reverse order #include int numbers[5]; int main(void) { int i = 0; while (i < 5) { scanf("%d", &numbers[i]); i++; } i = 4; while (i >= 0) { printf("%d\n", numbers[i]); i--; } return 0; }