我是谁开始学习C一个Linux用户,我试图编译这个来源,我输入:
#include <stdio.h>
main()
{
float c,d;
c = 10215.3;
d = c / 3;
printf("%3.2f\n",d);
return 0;
}
这编译这个使用make文件,我写道:
cc -Wall -g printf.c -o printf
但我发现了这样的警告:
printf.c:2:1:警告:返回类型默认为 'INT'[-Wreturn型]
它编译的代码,我得到需要的结果,但我想知道这是什么意思