#include #include #include #include main() { int gd=DETECT; int gm=DETECT; int x,y; initgraph(&gd,&gm,"c:\\turboc\\bgi"); cleardevice(); x=getmaxx(); y=getmaxy(); rectangle(10,15,500,300); outtextxy(x/15,y/10,"Do you read this clear?"); setcolor(BLUE); outtextxy(x/15,y/10+10,"If you don't, go to hell!"); setcolor(BROWN); setlinestyle(2,1,104); rectangle(1,0,70,90); getch(); restorecrtmode(); }