[求助]又一个经典100例中的问题
【程序79】题目:字符串排序。
1.程序分析:
2.程序源代码:
main()
{
char *str1[20],*str2[20],*str3[20];
char swap();
printf("please input three strings\n");
scanf("%s",str1);
scanf("%s",str2);
scanf("%s",str3);
if(strcmp(str1,str2)>0) swap(str1,str2);
if(strcmp(str1,str3)>0) swap(str1,str3);
if(strcmp(str2,str3)>0) swap(str2,str3);
printf("after being sorted\n");
printf("%s\n%s\n%s\n",str1,str2,str3);
}
char swap(p1,p2)
char *p1,*p2;
{
char *p[20];
strcpy(p,p1);strcpy(p1,p2);strcpy(p2,p);
}
问题:我用Tubro C2.0 编译,没有错误也没有警告,但我个人感觉这么程序应该加个头文件#include <string.h>,就加上了,加了之后编译出现8个警告
Warning:Suspicious pointer conversion in function main
我的想法错误?不应该加#include <string.h>头文件吗?请指点