#include <stdio.h>
void main()
{
char a[10],b[10],c[10];
void hcot (char *p,char *n);
gets(a);
gets(b);
gets(c);
if(strcmp(a,b)>0)hcot(a,b);
if(strcmp(a,c)>0)hcot(a,c);
if(strcmp(b,c)>0)hcot(b,c);
printf("%s\n%s\n%s\n",a,b,c);
getch();
}
void hcot(char *p, char *n)
{
char g[10];
strcpy(g,p); strcpy(p,n); strcpy(n,g);
}
数组名就是一个指针了