void main()
{ Init();
setlinestyle(0,0,3);
rectangle(50,40,610,460);
outtextxy(51,41,"Welcome to use the software.This software is used to get information about" );
outtextxy(51,42,"how the memory is delivered when a C language program is to run! And it is");
outtextxy(51,43,"programed by Zhang JIhui for a graduated design! If you want to escape this");
outtextxy(51,44,"frame,please press ESC on the keyboard! ");
}
void Init(void)
{
int gd=DETECT,gm;
initgraph(&gd,&gm,"d:\\tc\\bgi");
cleardevice();
}