×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
compare two string - String
2D String Array Sort - String - String - C Language
3697    Arnab De    31/05/2019

2D Array sorting. This is a very easy program. Here we used strcmp() to compare the strings with in an array of string.

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

int main()
{
	int i,j;
	char names[5][30],temp[30];
	printf("Enter 5 Names\n");
	for(i=0;i<5;i++)
	{
		gets(names[i]);
	}
	for(i=0;i<5;i++)
	{
		for(j=i+1;j<5;j++)
		{
			if(strcmp(names[i],names[j])>0)
			{
				strcpy(temp,names[i]);
				strcpy(names[i],names[j]);
				strcpy(names[j],temp);
				

			}
		}
	}
	printf("\n\n OUTPUTS  \n\n");
	for(i=0;i<5;i++)
	{
		puts(names[i]);
	}
}
compare two string - String
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Swami Vivekananda
Education is not the amount of information that is put into your brain and runs riot there, undigest
Swami Vivekananda
8506
73.6
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52013
25/06/2018     43824
01/01/2018     42877
28/06/2017     40624
02/08/2017     39430
01/08/2017     33632
06/07/2017     33447
15/05/2017     32737
14/07/2017     28996
11/09/2018     28880
softetechnologies