Could someone help me write a C program that would let users to input names in any order, then displays the names, sorted in Alphabetical order. You may use any sorting algorithm like Bubble Sort, Selection Sort, Insertion Sort, etc.
The program should include 2 Call By Reference Functions:
- One function to sort the names.
Example signature of this function or function declaration:
void sortNames(char **, int*);
0 Answer(s)