Hi, I was using borland 5.5, and I tried introducing graphics using the followig code
#include<iostream.h>
#include<graphics.h>
$void main()
{
int driver,mode;
driver = DETECT;
initgraph(&driver,&mode,"\\tc\\bgi);
circle(25,35,12);
closegraph();
}
But I get the error graphics not supported with windows. So I tried TURBO C++ 3.0. And it worked perfectly
But the problem is when I try using the floodfill function() it does not colour the circle but the color is spread out all over the screen. How can
I solve this problem.