Table of Contents
FILE definition
Example
Output
Home Backend Development C++ In C language, what is the data type of FILE?

In C language, what is the data type of FILE?

Sep 07, 2023 pm 10:05 PM
file data type in c language file type in file operations Definition of file data type

In C language, what is the data type of FILE?

In C language, we use files (Files) to handle file operations, and we use pointers of type FILE to operate files. Therefore, FILE is a data type. This is called an opaque data type because its implementation is hidden. The definition of FILE is system specific. The following is the definition of FILE in the Ubuntu system:

FILE definition

struct _IO_FILE {
   int _flags; /* High-order word is _IO_MAGIC; rest is flags. */
   #define _IO_file_flags _flags
   /* The following pointers correspond to the C++ streambuf protocol. */
   /* Note: Tk uses the _IO_read_ptr and _IO_read_end fields directly. */
   char* _IO_read_ptr; /* Current read pointer */
   char* _IO_read_end; /* End of get area. */
   char* _IO_read_base; /* Start of putback+get area. */
   char* _IO_write_base; /* Start of put area. */
   char* _IO_write_ptr; /* Current put pointer. */
   char* _IO_write_end; /* End of put area. */
   char* _IO_buf_base; /* Start of reserve area. */
   char* _IO_buf_end; /* End of reserve area. */
   /* The following fields are used to support backing up and undo. */
   char *_IO_save_base; /* Pointer to start of non-current get area. */
   char *_IO_backup_base; /* Pointer to first valid character of backup area */
   char *_IO_save_end; /* Pointer to end of non-current get area. */
   struct _IO_marker *_markers;
   struct _IO_FILE *_chain;
   int _fileno;
   #if 0
      int _blksize;
   #else
      int _flags2;
   #endif
      _IO_off_t _old_offset; /* This used to be _offset but it's too small. */
   #define __HAVE_COLUMN /* temporary */
   /* 1+column number of pbase(); 0 is unknown. */
   unsigned short _cur_column;
   signed char _vtable_offset;
   char _shortbuf[1];
   /* char* _save_gptr; char* _save_egptr; */
   _IO_lock_t *_lock;
   #ifdef _IO_USE_OLD_IO_FILE
};
struct _IO_FILE_complete
{
   struct _IO_FILE _file;
   #endif
   #if defined _G_IO_IO_FILE_VERSION && _G_IO_IO_FILE_VERSION == 0x20001
   _IO_off64_t _offset;
   # if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
   /* Wide character stream stuff. */
   struct _IO_codecvt *_codecvt;
   struct _IO_wide_data *_wide_data;
   struct _IO_FILE *_freeres_list;
   void *_freeres_buf;
   size_t _freeres_size;
   # else
      void *__pad1;
      void *__pad2;
      void *__pad3;
      void *__pad4;
      size_t __pad5;
   # endif
   int _mode;
   /* Make sure we don't get into trouble again. */
   char _unused2[15 * sizeof (int) - 4 * sizeof (void *) - sizeof (size_t)];
   #endif
};
Copy after login

Now let us look at an example of using FILE. The Chinese translation of

Text file (/tmp/test.txt):
This
is testing for fprintf...
This is testing for fputs...
Copy after login

Example

is:

Example

#include <stdio.h>
main() {
   FILE *fp;
   char buff[255];
   fp = fopen("/tmp/test.txt", "r");
   fscanf(fp, "%s", buff);
   printf("1 : %s</p><p>", buff );
   fgets(buff, 255, (FILE*)fp);
   printf("2: %s</p><p>", buff );
   fgets(buff, 255, (FILE*)fp);
   printf("3: %s</p><p>", buff );
   fclose(fp);
}
Copy after login

Output

1 : This
2: is testing for fprintf...

3: This is testing for fputs...
Copy after login

The above is the detailed content of In C language, what is the data type of FILE?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How does the C   Standard Template Library (STL) work? How does the C Standard Template Library (STL) work? Mar 12, 2025 pm 04:50 PM

This article explains the C Standard Template Library (STL), focusing on its core components: containers, iterators, algorithms, and functors. It details how these interact to enable generic programming, improving code efficiency and readability t

How do I use algorithms from the STL (sort, find, transform, etc.) efficiently? How do I use algorithms from the STL (sort, find, transform, etc.) efficiently? Mar 12, 2025 pm 04:52 PM

This article details efficient STL algorithm usage in C . It emphasizes data structure choice (vectors vs. lists), algorithm complexity analysis (e.g., std::sort vs. std::partial_sort), iterator usage, and parallel execution. Common pitfalls like

How does dynamic dispatch work in C   and how does it affect performance? How does dynamic dispatch work in C and how does it affect performance? Mar 17, 2025 pm 01:08 PM

The article discusses dynamic dispatch in C , its performance costs, and optimization strategies. It highlights scenarios where dynamic dispatch impacts performance and compares it with static dispatch, emphasizing trade-offs between performance and

How do I use ranges in C  20 for more expressive data manipulation? How do I use ranges in C 20 for more expressive data manipulation? Mar 17, 2025 pm 12:58 PM

C 20 ranges enhance data manipulation with expressiveness, composability, and efficiency. They simplify complex transformations and integrate into existing codebases for better performance and maintainability.

How do I handle exceptions effectively in C  ? How do I handle exceptions effectively in C ? Mar 12, 2025 pm 04:56 PM

This article details effective exception handling in C , covering try, catch, and throw mechanics. It emphasizes best practices like RAII, avoiding unnecessary catch blocks, and logging exceptions for robust code. The article also addresses perf

How do I use move semantics in C   to improve performance? How do I use move semantics in C to improve performance? Mar 18, 2025 pm 03:27 PM

The article discusses using move semantics in C to enhance performance by avoiding unnecessary copying. It covers implementing move constructors and assignment operators, using std::move, and identifies key scenarios and pitfalls for effective appl

How do I use rvalue references effectively in C  ? How do I use rvalue references effectively in C ? Mar 18, 2025 pm 03:29 PM

Article discusses effective use of rvalue references in C for move semantics, perfect forwarding, and resource management, highlighting best practices and performance improvements.(159 characters)

How does C  's memory management work, including new, delete, and smart pointers? How does C 's memory management work, including new, delete, and smart pointers? Mar 17, 2025 pm 01:04 PM

C memory management uses new, delete, and smart pointers. The article discusses manual vs. automated management and how smart pointers prevent memory leaks.

See all articles