字符串怎样用子涵数去判断输出最大和最小的字符串???
#include <stdio.h>#include <string.h>
#include <stdlib.h>
#define a 81
int main(void)
{
char message[a],str[a],c[a];
int k;
printf("请输入5个字符串:");
scanf("%s", &message);
strcpy(c,message);
for(k=1;k<=4;k++)
{
scanf("%s", &str);
if(strcmp(message,str)<0)
strcpy(message,str);
else if(strcmp(c,str)>0)
strcpy(c,str);
}
printf("Max is: %s\n Min is %s\n", message,c);
return 0;
}