编译错误 error: control may reach end of non-void function

编译错误:您提交的代码无法完成编译
第1行6:1: error: control may reach end of non-void function [-Werror,-Wreturn-type]
}
^

1 error generated.


产生错误的原因:在某些情况下,函数没有响应的返回。

int max(int  a, int b){

if(a>=b) return a;

else return b;

}

函数max求最大值,无论a,b哪个大都有返回值。但是在有些编译器下会提示上述编译错误。可能是因为返回语句都在条件语句中的吧

你可能感兴趣的:(编译错误 error: control may reach end of non-void function)