In C++
SimpleVector Modification
Modify the SimpleVector class template presented in this chapter toinclude the
member functions push_back and pop_back . These functions shouldemulate the STL
vector class member functions of the same name. (See Table 16-5 .)The push_back
function should accept an argument and insert its value at the endof the array. The
pop_back function should accept no argument and remove the lastelement from the
array. Test the class with a driver program.
REPORTING FORMAT: Source Code& Testing Results
Expert Answer
An answer will be send to you shortly. . . . .