개념 "_IO_FILE"은 리눅스 시스템의 표준 라이브러리에서 파일 스트림을 나타내는 구조체이다. "fopen"과 같은 파일과 관련있는 함수면 파일 스트림을 열 때 힙에 할당된다. "_IO_FILE" 구조체의 정의는 다음과 같다. struct _IO_FILE { int _flags;/* High-order word is _IO_MAGIC; rest is flags. */ /* The following pointers correspond to the C++ streambuf protocol. */ char *_IO_read_ptr;/* Current read pointer */ char *_IO_read_end;/* End of get area. */ char *_IO_read_base;/* Start o..