15 lines
151 B
C
Raw Normal View History

2016-07-21 10:22:47 -07:00
#include<graphics.h>
#include<conio.h>
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "C:\\TC\\BGI");
getch();
closegraph();
return0
}