Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started