fputs 和循环的奇怪行为

发布于 2024-08-26 05:46:04 字数 268 浏览 2 评论 0原文

运行以下代码时,我没有得到任何输出,但我无法找出原因。

# include <stdio.h>

int main()
{
    fputs("hello", stdout);

    while (1);

    return 0;
}

如果没有 while 循环,它可以完美工作,但是一旦我添加它,我就得不到任何输出。它肯定应该在开始循环之前输出吗?只在我的系统上吗?我是否必须刷新某种缓冲区或其他东西?

提前致谢。

When running the following code I get no output but I cannot work out why.

# include <stdio.h>

int main()
{
    fputs("hello", stdout);

    while (1);

    return 0;
}

Without the while loop it works perfectly but as soon as I add it in I get no output. Surely it should output before starting the loop? Is it just on my system? Do I have to flush some sort of buffer or something?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

守不住的情 2024-09-02 05:46:04

您必须刷新stdout。当您写入换行符时,这种情况会自动发生。将 fputs 更改为:

fputs("hello\n", stdout);

或者更改为:

fputs("hello", stdout);
fflush(stdout);

You have to flush stdout. This happens automatically when you write a newline character. Change the fputs to:

fputs("hello\n", stdout);

Or to:

fputs("hello", stdout);
fflush(stdout);
月亮邮递员 2024-09-02 05:46:04

我想问这个问题帮助我找到了解决方案。需要使用 fflush(..)

http://www 进行刷新.thinkage.ca/english/gcos/expl/c/lib/fflush.html

I guess asking the question helped me find the solution. Flushing is required with fflush(..)

http://www.thinkage.ca/english/gcos/expl/c/lib/fflush.html

幽梦紫曦~ 2024-09-02 05:46:04

fflush(stdout);

fflush(stdout);

阳光①夏 2024-09-02 05:46:04

为什么应该这样? stdio 函数不知道外部发生了什么,并且肯定不会知道无限循环即将到来。仅当缓冲区已满或明确请求时才会刷新缓冲区。

Why should it? The stdio functions doesn't know what's happening outside, and surely won't know an infinite loop is coming. The buffer will be flushed only when it is full or explicitly requested.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文