两个字符串的比较
#include <stdio.h>char *fun ( char *s, char *t)
{int m,n;
m=n=0;
do
{s++;
m++;
}while(*s);
do
{t++;
n++;
}while(*t);
if(m==n)
return s;
if(m<n)
return t;
else return s;
}
main( )
{ char a[20],b[20];
void NONO ( );
printf("Input 1th string:") ;
gets( a);
printf("Input 2th string:") ;
gets( b);
printf("%s\n",fun (a, b ));
NONO ();
}比较两个字符串的长度 输出长度大的字符串
若相等 输出第一个。。可是我写的那个函数怎么输出不了啊 大家帮忙看看吧