c语言,warning: return type of 'main' is not `int'怎么解决?
Posted 大斗神204
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言,warning: return type of 'main' is not `int'怎么解决?相关的知识,希望对你有一定的参考价值。
////警告可以忽略,但如果严格点的话
#include<stdio.h>
#include<math.h>
int
main(
int
argc,
char
*arg[])
///标准C主函数原型
{
float
x,y;
printf
(
"Enter x:"
);
scanf
(
"%f"
,&x);
if
(x<0){
y=
pow
(x,5)+2*x+1/x;
}
else
{
y=
sqrt
(x);
}
printf
(
"f(%.2f)=%.2f\n"
,x,y);
return
0;
}
以上是关于c语言,warning: return type of 'main' is not `int'怎么解决?的主要内容,如果未能解决你的问题,请参考以下文章
warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-resu