Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to Sort Names in Alphabetical Order Using Bubble Sort in C Program

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 808
    Answer it

    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)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: