Write a program that declares an array of characters and reverses them. Use this main program to begin with
Now, re-write the code to use vectors instead of arrays. Use push_back to put the numbers from 0 to n and let the user enter n. Use the at method instead of array notation.