Use ONLY back(), empty(), pop_back(), push_back() of class vector and a while loop to create reverseVector function. Please make sure to use only the following choices. Thanks
Use visual studio to create a new C++ project. Then, Write a C++ program that implements the following: Use the class vector from the standard library to constructs and initialize a vector object. Impalement a function called ReverseVector that accepts a vector as a parameter. Then, ReverseVector will reverse the given vector. Then it will save the reversed vector into a new vector object and return it. The ReverseVector function have to utilize ONLY the following: 1. 2. back(), empty(), pop_back(), push_back() of class vector and a while loop. For example, the given vector is: FruitesVector [“apples”, “bananas”, “pineapples”, “peaches”, “raspberries”, “blackberries”, “strawberries”] The reversed is: Reversed_FruitesVectorl”strawberries”, “blackberries”, “raspberries”, “peaches”, “pineapples”, “bananas”, “apples'”] 3. 4. Implement PrintVector function that prints the contents of a vector. Implement a main function to test your method.