View Code of Problem 78

#include <stdio.h>
int main()
{
	char a[100],b[100],c[100],t[100];
  	gets(a);gets(b);gets(c);
  	if(strcmp(a,b)>0)
        {
        	strcpy(t,a);
          	strcpy(a,b);
          	strcpy(b,t);  
        }
	if(strcmp(a,c)>0)
        {
        	strcpy(t,a);
          	strcpy(a,c);
          	strcpy(c,t);  
        }
  	if(strcmp(b,c)>0)
        {
        	strcpy(t,b);
          	strcpy(b,c);
          	strcpy(c,t);  
        }


}

Double click to view unformatted code.


Back to problem 78