#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
void main(){
    int gd=DETECT,gm,i;
    initgraph(&gd,&gm,"..\\bgi");
    for(i=0;i<1000&&!kbhit();i++){
        arc(getmaxx()/2,getmaxy()/2,0+i,90+i,i/10);
        delay(10);
    }
    getch();
}
When i try to start i=1000 to 0 and starting point as i and end point is i-90 nothing happens..
 
    