this is C++ question
Write a complete program that staticaly declares an array with the following values:
2, 3, 5, 19, 4, 20, 35, 123, -3, 45, 82, 93, 62, 35, 29, 21, 19, 57, 35, 64, 62, 324, 242, 0, -3
and manipulates the resulting array so that the values in the array and reversed.
Print out the new array, which should look as follows:
-3, 0, 242, 324, 62, 64, 35, 57, 19, 21, 29, 35, 62, 93, 82, 45, -3, 123, 35, 20, 4, 19, 5, 3, 2
Note:
- you must use for-loop structure in order to complete your manipulations
- you may use only one (1) array - cannot create second array