Write a C++ program which reads lines from the "otherSorts.txt" text file into a string array until EOF. Incorporate the "SelectionSort", "IndexOfLargest", and "Swap" functions on pages 405-406 in the textbook to sort the array. Modify the "SelectionSort" function to count the number of times the "Swap" function is called. Output the sorted lines to a file, followed by a blank line and a statement of the number of times the "Swap" function was called.