鱼C论坛

 找回密码
 立即注册
查看: 1971|回复: 9

[已解决]c与指针里一句话不理解

[复制链接]
发表于 2021-5-26 19:38:46 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
如图   
’‘函数没有声明 默认返回int ,再转换’‘  
编译器真的这么蠢吗,我没声明,    定义函数功能的时候不是有返回类型吗   
最佳答案
2021-5-26 20:58:46
#include <stdio.h>

int main(void) {
    float x = test();
    printf("%f\n", x);
    return 0;
}

test() {
    return 1234.56;
}

输出
1234.000000

编译会有警告
main.c: In function ‘main’:
main.c:4:15: warning: implicit declaration of function ‘test’ [-Wimplicit-function-declaration]
    4 |     float x = test();
      |               ^~~~
main.c: At top level:
main.c:9:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
    9 | test() {
      | ^~~~
T4_TF{)Y0AHLZRVAK_~Q0$R.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-5-26 19:39:17 | 显示全部楼层
有无董哥
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-5-26 19:50:38 | 显示全部楼层
我真的那么蠢吗,我没看懂
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-5-26 20:04:32 | 显示全部楼层
王之叹息 发表于 2021-5-26 19:50
我真的那么蠢吗,我没看懂

骂我蠢吗 呜呜呜
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-5-26 20:13:47 | 显示全部楼层

呜呜呜,我在骂自己
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-5-26 20:58:46 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>

int main(void) {
    float x = test();
    printf("%f\n", x);
    return 0;
}

test() {
    return 1234.56;
}

输出
1234.000000

编译会有警告
main.c: In function ‘main’:
main.c:4:15: warning: implicit declaration of function ‘test’ [-Wimplicit-function-declaration]
    4 |     float x = test();
      |               ^~~~
main.c: At top level:
main.c:9:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
    9 | test() {
      | ^~~~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-5-26 21:02:10 | 显示全部楼层
#include <stdio.h>

int main(void) {
    float x = test();
    printf("%f\n", x);
    return 0;
}

float test() {
    return 1234.56;
}
main.c: In function ‘main’:
main.c:4:15: warning: implicit declaration of function ‘test’ [-Wimplicit-function-declaration]
    4 |     float x = test();
      |               ^~~~
main.c: At top level:
main.c:9:7: error: conflicting types for ‘test’
    9 | float test() {
      |       ^~~~
main.c:4:15: note: previous implicit declaration of ‘test’ was here
    4 |     float x = test();
      |               ^~~~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-5-26 21:03:02 | 显示全部楼层
#include <stdio.h>

int main(void) {
    float x = test();
    printf("%f\n", x);
    return 0;
}

int test() {
    return 1234.56;
}
main.c: In function ‘main’:
main.c:4:15: warning: implicit declaration of function ‘test’ [-Wimplicit-function-declaration]
    4 |     float x = test();
      |               ^~~~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-5-26 21:08:20 From FishC Mobile | 显示全部楼层
因为程序员指定的返回类型有可能是动态的,比如有可能是字符串,有可能是整型,导致内存偏移跳转会出现问题,所以需要事先声明
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-5-26 22:56:23 | 显示全部楼层
情况一
当自定义的函数位于main函数之后,如果没有先在main函数之前进行函数声明,则main函数中所调用的自定义函数是默认返回值是int类型的,如果main函数后定义的函数是void类型就会提出警告,如上所示,但是如果不是void类型也不是int类型就会报错。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-14 14:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表