我有以下代码,结构声明在main之前,函数声明也是
struct stuff{
int sale_per_day[Kdays];
int max_sale;
};
void set_max();
那部分是最后...
void set_max(struct stuff *point; int n = 0)
{
return;
}
现在我到底做错了什么?我明白了
“ISO C 禁止前向参数声明”
错误。我正在根据课程要求使用 GCC C89。