×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
compare two string - String
2D String Array Sort - String - String - C Language
3951    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.
Leo Tolstoy
However diffcult life may seem, there is always something you can do, and succeed at. It matters that you don not just give up.
Leo Tolstoy
3241
80.79
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54121
25/06/2018     45120
01/01/2018     43672
28/06/2017     41206
02/08/2017     40220
01/08/2017     34265
06/07/2017     34064
15/05/2017     33304
11/09/2018     30321
14/07/2017     29831
softetechnologies