c语言中 FILE类型是如何来的

2024-11-18 14:47:10
推荐回答(4个)
回答1:

  C语言中FILE
  VC中
  在"stdio.h"中有如下定义
  struct _iobuf {
  char *_ptr; //文件输入的下一个位置
  int _cnt; //当前缓冲区的相对位置
  char *_base; //指基础位置(即是文件的其始位置)
  int _flag; //文件标志
  int _file; //文件的有效性验证
  int _charbuf; //检查缓冲区状况,如果无缓冲区则不读取
  int _bufsiz; //缓冲区的大小
  char *_tmpfname; //临时文件名
  };
  typedef struct _iobuf FILE。

回答2:

在stdio.h文件里面
要用的话就在代码开头增加 #include
想要看看FILE是什么构成的就在Dev-C++里面输入"FILE",按住CTRL-点"FILE"就可以自动调到定义的地方了

回答3:

头文件stdio.h里面定义的啊

struct _iobuf {
        char *_ptr;
        int   _cnt;
        char *_base;
        int   _flag;
        int   _file;
        int   _charbuf;
        int   _bufsiz;
        char *_tmpfname;
        };
typedef struct _iobuf FILE;

回答4:

FILE是一个系统预定义的结构体,专门在文件中使用,如果你感兴趣的话,可以找到它的头文件,自己看一下,我也不知道定义它的头文件是哪个