/**************************************************
 Program of to save contents of screen in DOS mode
----------------------------------------------------
 Author      : Navtez S. Benipal.
 Email       : be00078@bbsbec.org
 URL         : www.geocities.com/desireofstars
----------------------------------------------------
 Description : This program will save the contents
               of screen (in DOS mode) in to file
               named "screen" in the sam directory

**************************************************/
#include<stdio.h>
#include<conio.h>
char far *scr=(char far *)0xB8000000L;
char far *v;
void main()
{
 int i;
 int temp;
 FILE *fp;
 fp=fopen("screen","wb");
 for(i=0;i<4000;i++)
 {
  v=scr+i;
  temp=*v;
  fputc(temp,fp);
 }
 fclose(fp);
}