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>intmain()
{
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]);
return0;
}
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.
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.
Output:
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