⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 savescr.c

📁 Many C samples. It is a good sample for students to learn C language.
💻 C
字号:
/* Bai tap 1_74 - Luu noi dung man hinh vao tap tin SCREEN.DAT */
#include <stdio.h>
#include <mem.h>
#include <dos.h>

void main()
{
   char far *video;
   int i;
   FILE *fp;

   video = (char far*)MK_FP(0xB800, 0);
   if ((fp = fopen("SCREEN.DAT", "w+b")) == NULL)
     printf("\nKhong the tao tap tin SCREEN.DAT");
   else
   {
     i = 0;
     for (i=0; i<4000; i++)
       fputc(video[i], fp);
     fclose(fp);
     printf("\nCong viec hoan tat");
   }
   getch();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -