warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
时间: 2023-05-19 07:05:34 浏览: 4743
详解C语言中scanf函数使用的一些注意点
5星 · 资源好评率100%
这个警告是由于scanf函数的返回值没有被使用而产生的。scanf函数的返回值是成功读取的参数个数,如果这个返回值没有被使用,就会产生这个警告。如果你确定不需要使用scanf函数的返回值,可以在调用scanf函数时在前面加上一个(void)来消除这个警告。
阅读全文