Quote:
1. Write a C++ program to do the following :
a. Define a constant MAX equal to 5
b. Declare a pointer called entry to point to an integer number
c. Use new operator to reserve memory space for storing MAX
integer numbers for entry.
d. Use a loop to initialise all the MAX integer numbers with
even numbers from 2 to 10.
e. Use another loop to display the values using pointer/offset
notation.
f. Use another loop to display the values in reverse order using
array subscript notation.
g. Release the dynamic memory before exiting the program.
|
I have no idea how to do this =x