#include #include "StringUtils.h" using namespace std; const size_t SIZE = 5; void PrintArray(const string words[], size_t size); void DoSearch(const string words[], size_t size, string key); int main() { string words[SIZE]{"hello","world","how","are","you"}; cout << " See I am new" << endl; cout << "Before the sort " << endl; PrintArray(words, SIZE); cout << endl; Sort(words, SIZE); cout << "After the sort" << endl; PrintArray(words, SIZE); cout <