如何关闭 C 中标准输出的缓冲

发布于 2024-12-11 17:54:00 字数 132 浏览 0 评论 0原文

我想关闭标准输出的缓冲,以获得以下代码的确切结果

while(1) {
    printf(".");
    sleep(1);
}

代码 printf 一堆“.”仅当缓冲区已满时。

I want to turn off the buffering for the stdout for getting the exact result for the following code

while(1) {
    printf(".");
    sleep(1);
}

The code printf bunch of '.' only when buffer gets filled.

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

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

发布评论

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

评论(5

不如归去 2024-12-18 17:54:00

您可以使用 setvbuf 函数

setvbuf(stdout, NULL, _IONBF, 0);

以下是该函数的一些其他链接。

You can use the setvbuf function:

setvbuf(stdout, NULL, _IONBF, 0);

Here're some other links to the function.

聆听风音 2024-12-18 17:54:00

您还可以使用 setbuf

setbuf(stdout, NULL);

这将处理一切

You can also use setbuf

setbuf(stdout, NULL);

This will take care of everything

德意的啸 2024-12-18 17:54:00

你可以这样做:

write(1, ".", 1);

而不是这样:

printf(".");

You can do this:

write(1, ".", 1);

instead of this:

printf(".");
最单纯的乌龟 2024-12-18 17:54:00

使用 fflush(FILE *stream) 并以 stdout 作为参数。

http://www.elook.org/programming/c/fflush.html

Use fflush(FILE *stream) with stdout as the parameter.

http://www.elook.org/programming/c/fflush.html

情徒 2024-12-18 17:54:00

使用fflush(stdout)。您可以在每次调用 printf 后使用它来强制刷新缓冲区。

Use fflush(stdout). You can use it after every printf call to force the buffer to flush.

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