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

界面编程

开发平台:

C/C++

  1. #include <conio.h>
  2. #include <io.h>
  3. #include <fcntl.h>
  4. #include <sysstat.h>
  5. void main(void)
  6.  {
  7.    char buffer[8000];
  8.    int handle;
  9.    if ((handle = creat("SAVESCR.DAT", S_IWRITE)) == -1) 
  10.     cprintf("Error opening SAVESCRN.DATrn");
  11.    else
  12.      {
  13.        gettext(1, 1, 80, 25, buffer);
  14.        write(handle, buffer, sizeof(buffer));
  15.        close(handle);
  16.      }
  17.  }