Q:

C program to sort strings in alphabetical order

belongs to collection: C String Programs

0

C program to sort strings in alphabetical order

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Given an array of strings, we have to sort the given strings in alphabetical order using C program.

Program:

The source code to sort strings in alphabetical order is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.

// C program to sort strings in the alphabetical order

#include <stdio.h>
#include <string.h>

int main()
{
    char name[5][7] = { "Virat", "Rohit", "Shikar", "Hardik", "Risabh" };
    char temp[7];

    int i = 0, j = 0;

    printf("Names before sorting: \n");
    for (i = 0; i < 5; i++)
        printf("  %s\n", name[i]);

    for (i = 0; i < 4; i++) {
        for (j = i + 1; j < 5; j++) {
            if (strcmp(name[i], name[j]) > 0) {
                strcpy(temp, name[i]);
                strcpy(name[i], name[j]);
                strcpy(name[j], temp);
            }
        }
    }

    printf("Sorted names: \n");
    for (i = 0; i < 5; i++)
        printf("  %s\n", name[i]);

    return 0;
}

Output:

Names before sorting: 
  Virat
  Rohit
  Shikar
  Hardik
  Risabh
Sorted names: 
  Hardik
  Risabh
  Rohit
  Shikar
  Virat

Explanation:

Here, we created an array of 5 strings name that contains the name of persons. Then we sort the names into alphabetical order. After that, we printed the sorted array of names on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C String Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to find the frequency of the given word ... >>
<< C program to delete duplicate words in the string...