Question:
C++ template class
Write a class template SortableVector. The class should have a member function that sorts the vector elements in ascending order (your choice of the sorting method). Test the template in a driver program. Do NOT use the STL.