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*);
Another function that is called by the sortNames function, for comparing the names (similar to the standard strcmp() function of string.h). DO NOT use the standard strcmp() function of string.h. Simulate the functionality of standard strcmp() function with the help of pointers.
Example signature of this function or function declaration:
int compareStrings(char*, char*);
You may use other standard functions available in string.h (except strcmp()), like strlen(), strcpy(), etc.
The program should run continuously in a loop till the user wishes to exit.
0 Answer(s)