3 Demonstation of variable arrays.
4 Only works with compilers that support C99
14 printf("How many numbers do you want to reverse? ");
17 int a
[n
]; /* C99 Only */
18 printf("Enter %d numbers: ", n
);
19 for(i
= 0; i
< n
; i
++)
22 printf("In reverse order:");
23 for(i
= n
- 1; i
>= 0; i
--)