C++ programming test 2, chapters 6,7,& 9 on Functions,
Arrays, & Pointers
1. Create a one dimensional array, Ages, which
will hold 4 ages. Each age is an int.
b. Write a for
loop and print, in reverse order the 4
values stored in memory assuming that the ages in the previous
question have already been entered with a space between each value.
Use subscript notation.
short cnt;
c. Do the same as above, but use pointer...