gpt4 book ai didi

while(1)之前的代码不运行

转载 作者:行者123 更新时间:2023-11-30 19:54:32 30 4
gpt4 key购买 nike

我有如下代码:

#include <stdio.h>

int main(int argc, char *argv[]) {
printf("hello");

while(1){
// whatever here
}
}

问题是:为什么第一条指令被跳过?它只运行循环,永远不会打印 hello 。我用 gcc 和 g++ 编译了它,结果相同。

最佳答案

确实运行,只是输出缓冲区在while之前没有刷新

使用printf("hello\n");来代替。换行符将刷新缓冲区,以便立即将输出写入控制台。

关于while(1)之前的代码不运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35606614/

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