I've use to create this in Turboc++ 3.0
and there are four linker error
how could i fix this?
#include<stdio.h>
#include<graphics.h>
#include<conio.h>
main()
{
int gd=DETECT,gm,col=0;
initgraph(&gd,&gm,"c:\tc\bgi");
while(!kbhit())
{
setcolor(15);
circle(col,100,50);
col++;
if(col>=600)
col=0;
cleardevice();
}
}