gpt4 book ai didi

c - 我无法声明一个非常基本的函数

转载 作者:行者123 更新时间:2023-11-30 17:09:41 26 4
gpt4 key购买 nike

我尝试编译一个函数并像这样声明它:

float value_max (float x1, float x2, float x3, float x4, float x5);

但是我得到了这个:

2lab9.c:11:2: warning: ISO C90 forbids mixed declarations and code [-Wpedantic]
void value_max (float x1, float x2, float x3, float x4, float x5);

帮忙,谢谢

最佳答案

编译器似乎检测到了冲突的声明。您发布的代码中的第一个返回 float,而第二个返回 void

确保两者相同。

最好将声明放在头文件中,并在需要的地方#include 头文件中。

关于c - 我无法声明一个非常基本的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33191350/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com