输入3个字符串,按从小到大的顺序输出,需用到指针和函数
输入3个字符串,按从小到大的顺序输出,需用到指针和函数
日期:2016-07-27 08:35:21 人气:1
其实可以使用三个 指针。
char str1[]= "";str2[]= "";str3[]= "";
int *p1 = str1;*p2 = str2;*p3 = str3;
int res1= strcmp(p1,p2);
int res2= strcmp(p1,p3);
int res3= strcmp(p2,p3);
if (res1 * res2 <0)
{
prin