TELL.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <io.h>
  3. #include <fcntl.h>
  4. void main(void)
  5.  {
  6.    int handle;
  7.    char buffer[512];
  8.    int bytes_read;
  9.    if ((handle = open("\CONFIG.SYS", O_RDONLY)) == -1)
  10.      printf("Error opening \CONFIG.SYSn");
  11.    else
  12.      {
  13.        printf("Current file position %ldn", tell(handle));
  14.        while (bytes_read = read(handle, buffer, sizeof(buffer)))
  15.          write(1, buffer, bytes_read);
  16.        printf("Current file position %ldn", tell(handle));
  17.        close(handle);      
  18.      }
  19.  }
  20.