gpt4 book ai didi

C 警告 : Statement with no effect

转载 作者:太空狗 更新时间:2023-10-29 16:31:31 27 4
gpt4 key购买 nike

当尝试编译我的程序时:

gcc -pedantic -Wall -ansi 

我收到警告:警告:声明无效

引用这一行:

for(currentDirection; currentDirection <= endDirection; currentDirection++)

谁能帮我解决这个问题?

最佳答案

currentDirection; 什么都不做。

将你的行替换为

for(; currentDirection <= endDirection; currentDirection++)

或者,如果您只是忘记初始化变量:

for(currentDirection = 0; currentDirection <= endDirection; currentDirection++)

关于C 警告 : Statement with no effect,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5417370/

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