stdin 的 int 宏是什么?

发布于 2024-11-18 07:44:22 字数 103 浏览 1 评论 0原文

stdin 的类型为 FILE *

是否有一个 fd 宏?

还是我需要自己转换?

stdin is of type FILE *,

is there a fd macro for it?

Or do I need to convert it myself?

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

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

发布评论

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

评论(4

眼泪也成诗 2024-11-25 07:44:22

STDIN_FILENO 来自 unistd.h

STDIN_FILENO from unistd.h

我的黑色迷你裙 2024-11-25 07:44:22

以下是标准流的整数文件描述符:

  • 0stdin
  • 1stdout
  • 2 标准错误

The following are the integer file descriptors for the standard streams:

  • 0: stdin
  • 1: stdout
  • 2: stderr
靖瑶 2024-11-25 07:44:22
#include<unistd.h>
#include<stdlib.h>
int main(){
    
    char ch;
    read(STDIN_FILENO,&ch,1);
    write(STDOUT_FILENO,&ch,1);

    exit(EXIT_SUCCESS);
}
#include<unistd.h>
#include<stdlib.h>
int main(){
    
    char ch;
    read(STDIN_FILENO,&ch,1);
    write(STDOUT_FILENO,&ch,1);

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