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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <io.h>        
  3. #include <fcntl.h>     
  4. #include <systypes.h> 
  5. #include <sysstat.h>  
  6. void main(void)
  7.  {
  8.     int handle;
  9.     if ((handle = creat("100ZEROS.DAT", S_IWRITE)) == -1)
  10.  fprintf(stderr, "Error opening 100ZEROS.DAT");
  11.     else
  12.      { 
  13.        if (chsize(handle, 100L)) 
  14.  printf("Error changing file sizen");
  15.        close(handle);
  16.      }
  17.  }