hi to all
it is a circle program not running , giving erorrs on my c language but it is working on my friend computer (c language) here is code ;
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
int main ()
{
int driver,mode, i;
detectgraph(&driver,&mode);
initgraph(&driver,&mode,"...\\ bgi");
setcolor(8);
for(i=10;i<201;i++)
{
sound(i);
circle(300,200,i);
delay(1000);
nosound();
}
getch();
}