You are on page 1of 1

#include<graphics.

h>
#include<conio.h>
void main()
{
int gm=0,gr;
initgraph(&gm,&gr,"");
cleardevice();
rectangle(100,100,100,100);
getch();
closegraph();
}

You might also like