我是这么做的,请多提意见!
#include<stdio.h>
#include<string.h>
void sort(char x[],char y[],char z[]);
void main()
{
char b[20],c[20],d[20];
char *a[20]={b,c,d};
gets(b);
gets(c);
gets(d);
char **p;
int i;
sort(b, c, d);
for (i=0;i<3;i++)
{
p=a+i;
printf("%s\n",*p);
}
}
void sort(char x[],char y[],char z[])
{
char array[20];
if (strcmp(x, y)>0)
{strcpy(array, x);strcpy(x, y);strcpy(y, array);}
if (strcmp(y, z)>0)
{strcpy(array, y);strcpy(y, z);strcpy(z, array);}
if (strcmp(x, z)>0)
{strcpy(array, x);strcpy(x, z);strcpy(z, array);}
}