c与指针里一句话不理解
如图’‘函数没有声明 默认返回int ,再转换’‘
编译器真的这么蠢吗,我没声明, 定义函数功能的时候不是有返回类型吗 有无董哥{:5_104:} 我真的那么蠢吗,我没看懂{:10_266:} 王之叹息 发表于 2021-5-26 19:50
我真的那么蠢吗,我没看懂
骂我蠢吗 呜呜呜{:5_104:} 万千只cnm 发表于 2021-5-26 20:04
骂我蠢吗 呜呜呜
呜呜呜,我在骂自己{:10_266:} #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() {
| ^~~~
#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();
| ^~~~
#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();
| ^~~~
因为程序员指定的返回类型有可能是动态的,比如有可能是字符串,有可能是整型,导致内存偏移跳转会出现问题,所以需要事先声明 情况一
当自定义的函数位于main函数之后,如果没有先在main函数之前进行函数声明,则main函数中所调用的自定义函数是默认返回值是int类型的,如果main函数后定义的函数是void类型就会提出警告,如上所示,但是如果不是void类型也不是int类型就会报错。
页:
[1]