免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1131 | 回复: 0
打印 上一主题 下一主题

[请教]关于gcc和cc编译工具编译的不同结果 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-10-23 10:22 |只看该作者 |倒序浏览
代码例子:
#include<stdio.h>
//void my_print(char *string);
//void my_print2(char *string);
main()
{
    char my_string[]="hello there";
    my_print( my_string );
    my_print2( my_string );
}
void my_print(char *string)
{
    printf("The string is %s\n",string);
}
void my_print2(char *string)
{
    char *string2;
    int size,i;
    size=strlen(string);
    string2=(char*)malloc(size+1);
    for(i=0;i<size;i++)
        string2[size-1-i]=string[i];
    string2[size]='\0';
    printf("The string printed backward is %s\n", string2);
}

================================================================
用cc编译c代码时,如果调用了没有事先声明的函数,会报告错误:
$ cc greet.c
"greet.c", line 9: identifier redeclared: my_print
        current : function(pointer to char) returning void
        previous: function() returning int : "greet.c", line 5
"greet.c", line 13: identifier redeclared: my_print2
        current : function(pointer to char) returning void
        previous: function() returning int : "greet.c", line 6
cc: acomp failed for greet.c
----------------------------------------------------------------------
但是用gcc编译,只是会产生warning:
$ gcc greet.c
greet.c:9: warning: type mismatch with previous implicit declaration
greet.c:5: warning: previous implicit declaration of `my_print'
greet.c:9: warning: `my_print' was previously implicitly declared to return `int'
greet.c:13: warning: type mismatch with previous implicit declaration
greet.c:6: warning: previous implicit declaration of `my_print2'
greet.c:13: warning: `my_print2' was previously implicitly declared to return `int'
===========================================================
请问一下,这是什么原因。这种情况是不是cc可以通过增加什么选项,来完成类似代码的编译。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP