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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void main(void)
  3.  {
  4.    FILE *input;
  5.    int letter;
  6.    if ((input = fopen("\CONFIG.SYS", "r")) == NULL)
  7.      printf("Error opening \CONFIG.SYSn");
  8.    else
  9.      { 
  10.        printf("Current position is byte %dnn", ftell(input));
  11.        // Read and write each character in the file
  12.        while ((letter = fgetc(input)) != EOF)
  13.          fputc(letter, stdout);
  14.        
  15.        printf("nCurrent position is byte %dn", ftell(input));
  16.        
  17.        fclose(input);     // Close the input file
  18.      }
  19.  }