我正在尝试运行一个从源代码复制的程序。它不断显示警告
"Unused declaration of function 'product'" for this line: int product(int x, int y);
我不知道如何修复它。
答案 0 :(得分:2)
必须有一个未使用的该函数的原型声明,这意味着函数本身未定义。
找到int product(int x, int y);
行并对其进行评论。添加2 //
//int product(int x, int y);
警告会响起。