I created this code according to what the question asked me to do. But I am confused on the last part of the question. Problem: Modify the selection function presented in this chapter into an array of strings instead of an array of ints. Test the function with a driver program. The last part is where im lost. What is a driver program?
A "driver" program is simply a test program that calls your function with one or more test cases to exercise your function. A driver program will typically check the result returned by your function for each test case to check that the result is correct.