gpt4 book ai didi

关于手册页中无效使用的 setbuf 示例的混淆

转载 作者:太空狗 更新时间:2023-10-29 11:35:15 25 4
gpt4 key购买 nike

来自 Ubuntu 上的 man setbuf:

You must make sure that the space that buf points to still exists by the time stream is closed, which also happens at program termination. For example, the following is invalid:

联机帮助页中的示例代码无效:

#include <stdio.h>

int main(void)
{
char buf[BUFSIZ];
setbuf(stdin, buf);
printf("Hello, world!\n");
return 0;
}

为什么无效?局部变量buf在程序通过return 0;返回后被销毁。

最佳答案

一旦 return 被执行,buf 就不再存在,但是程序继续执行,调用退出处理程序并关闭流。因此,当流关闭时,缓冲区不存在。

关于关于手册页中无效使用的 setbuf 示例的混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54977138/

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