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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <io.h>
  3. void main (int argc, char *argv[])
  4.  {
  5.    FILE *stream;
  6.    int handle;
  7.    long file_length;
  8.    if (stream = fopen(argv[1], "r"))
  9.      {
  10.         // Some statements
  11.         handle = fileno(stream);
  12.         file_length = filelength(handle);
  13.         printf("The file length is %ldn", file_length);
  14.         fclose(stream);
  15.      }
  16.    else
  17.      printf("Error opening %sn", argv[1]);
  18.  }