So I am writing a program that will sort a string array alphabetically. I have the selection sort done.
Where I am hitting a brick wall is how to sort it alphabetically regardless if its a capital letter or not, with out actually changing the word in the array.
so an example is the user inputs Zucchini, almonds, bread
and the program outputs almonds, bread, Zucchini
I tried to make a function that would temp convert toupper however that does not work out so well if at all.