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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void main(void)
  3.  {
  4.    FILE *input;
  5.    if ((input = fopen("\CONFIG.SYS", "r")) == NULL)
  6.      printf("Error opening \CONFIG.SYSn");
  7.    else
  8.      {
  9.        printf("Handle for CONFIG.SYS %dn", input->fd);
  10.        printf("Handle for stdin %dn", stdin->fd);
  11.        printf("Handle for stdout %dn", stdout->fd);
  12.        printf("Handle for stderr %dn", stderr->fd);
  13.        printf("Handle for stdaux %dn", stdaux->fd);
  14.        printf("Handle for stdprn %dn", stdprn->fd);
  15.        fclose(input);
  16.      }
  17.   }