慕粉2030253399
2017-03-15 17:09
hello.c: In function ‘main’: hello.c:9:13: warning: implicit declaration of function ‘max’ [-Wimplicit-function-declaration] int maxNum=max(a1,a2); ^ 每一步都按照视频走,怎么会出现这个问题?
在主程序中加一句申明 :int max (int a,int b);
编译器不同结果会不同,这个是没声明,有的版本编译器可以自动优化这个问题所以不会提出warning。可以在main 函数上加max函数的声明。
Linux C语言编程基本原理与实践
203964 学习 · 451 问题
相似问题