Write a C++ program called "Eliminate Evens". First, create an array named "values" with 10 elements of integer type. Then, the program should ask the user to enter values (which may be negative as well as positive) into this array. After that, the program replaces each array element that is odd with an even value. Positive odds should be replaced by even values by adding 1 to them, while negative odd values must be replaced by adding -1 to them. Finally, the program displays the updated array.
Please Note: Array input, output, and other accesses must be done using pointer notation only (no subscript [] notation allowed).