Skip to main content

PROGRAMMING FOR PROBLEM SOLVING LAB : Program 21

 Write a C program that sorts a given array of names


#include<stdio.h> 

#include<string.h> 

void main()

{

int i,j,count;

char str[25][25],temp[25]; 

//clrscr();

printf("\n How many strings u are going to enter?: \n ");

scanf("%d",&count);

printf("\n Enter Strings one by one:\n "); 

for(i=0;i<=count;i++)

gets(str[i]); 

for(i=0;i<=count;i++)

for(j=i+1;j<=count;j++)

{

if(strcmp(str[i],str[j])>0)

{

strcpy(temp,str[i]); 

strcpy(str[i],str[j]); 

strcpy(str[j],temp);

}

}

printf("\n Order of Sorted Strings:\n "); 

for(i=0;i<=count;i++)

puts(str[i]);

getch();

}

OUTPUT:
How many strings u are going to enter?: 
 6
 Enter Strings one by one:
 YAK
 BROWNEE
 ZEEBRA
 APPLE
 DUCKLING
 PATRIC
 Order of Sorted Strings:
 
APPLE
BROWNEE
DUCKLING
PATRIC
YAK
ZEEBRA

Comments

Popular posts from this blog

Learning and Development Interview Questions and answers for Mathematics-1.

  1). What is Mean, Mode and Median? Solution Answer: The mean is the average of a  collection of numbers or terms in a sequence. To calculate the mean use a formula is sum of total terms divided  by number of terms. The mode  is the most f requent number or term in a sequence. It means the number that occurred  highest number of times  in a sequence. To find the mode arrange the numbers in ascending or descending order and verify which number repeated most number of times in a sorted sequence. The median is the middle number/term where the sequence is arranged in ascending or descending order. If the sorted sequence have odd number of terms then  divide by 2 and round up to get the position of the median number.  If the  sorted sequence  have  even  number of terms then  divide by 2  to get the position of the median number.  2 ). What is the Difference between Fractional and Rational number? Solu...