Question: 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

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.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!