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

C,编译器问题????

C语言 Linux内核链表(企业级链表)

C语言函数:内存函数memcpy()以及实现

最简单的C语言问题!!!!

void是啥意思,oop又是啥意思?