gpt4 book ai didi

c - 如果没有 printf 语句立即为真

转载 作者:行者123 更新时间:2023-11-30 21:00:05 24 4
gpt4 key购买 nike

我注意到,如果我输入 printf 语句,代码就会按我预期的方式工作(在 if 语句为 true 之前等待 5 秒)。但是,如果我不将 printf 放入循环中,则 if 语句立即为 true。我想知道这是为什么?

int main()
{
int i;

for(i=0; i<10000000; i++){
int ticks = clock();
int time = (float)ticks / CLOCKS_PER_SEC;
printf("%d \n", time); //If this printf statement is not here

if(time >= 5){ //This will become true immediately
break;
}
}

printf("\nTimer is done");

return 0;
}

最佳答案

您在应该使用 time_t 的地方使用了 intint 在此上下文中可能会溢出,从而导致未定义的行为。

关于c - 如果没有 printf 语句立即为真,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43221093/

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