#include #include #include using namespace std;   const int PeopleNames = 20, size = 17; void selectionSort(char[][size], int num);   int main() { char Characters[PeopleNames][size] = {"Collins, Bill", "Smith, Bart", "Allen, Jim",                                   "Griffin, Jim", "Stamey, Marty", "Rose, Geri",                                   "Taylor, Terri", "Johnson, Jill", "Allison, Jeff",                                   "Looney, Joe", "Wolfe, Bill", "James, Jean",                                   "Weaver, Jim", "Pore, Bob", "Rutherford, Greg",                                   "Javens, Renee", "Harrison, Rose", "Setzer, Cathy",                                   "Pike, Gordon", "Holland, Beth" };   selectionSort(Characters,PeopleNames); system("pause"); return 0; }   void selectionSort(char Characters[][size], int num) { int startScan, minIndex; char minValue[size]; for (startScan = 0; startScan < (num - 1); startScan++) {         minIndex = startScan;         for (int i=0;i