编译报警
本帖最后由 dt3tc 于 2013-12-9 21:17 编辑编译器提示:"2.c|6|warning: ISO C90 does not support the '%lf' ms_printf format [-Wformat]|"
IDE:code::blocks 13.12-RC1
编译器:GNU GCC
操作系统:win8
程序运行时未见异常
勾选全局编译器设置-编译器设置-编译器标志,"in C mode,support all ISO C90 programs,in C++ mode,remove GNU extensions that conflict with ISO C++[-ansi]"后不再报警,但运行结果为0.000000
#include <stdio.h>
int main(void)
{
double a=9.0;
printf("%lf",a);
return 0;
}
目测楼主用的gcc编译器不是最新版的,我用的code::blocks 12.11版本无任何"警告提示",一样是win8 ISO C90 does not support the '%lf' ms_printf format [-Wformat]|这说的很清楚C90标准不支持 '%lf'这种格式。既然是警告就不要理会他了,现在貌似都是C99标准了
页:
[1]