Breaking

Write a program to assending order the string



Write a program to assending order the string.

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct a
{
char name[20];
}s[5];
void main()
{
           int i,j,a,b;
           char n[22];

for(i=0; i<5; i++)
{
         printf("Enter a character  :");
         scanf("%s",s[i].name);
}

for(i=0; i<5; i++)
{
       for(j=0; j<4; j++)
       {
              if(strcmp(s[i].name,s[j].name)<-1)
              {
                      strcpy(n,s[i].name);
                      strcpy(s[i].name,s[j].name);
                      strcpy(s[j].name,n);
              }
      }
}

  for(i=0; i<5; i++)
  {
         printf("\nEnte :%s",s[i].name);
   }
}




learn hack swain