bar(); and circle(); function example

 #include<graphics.h>

#include<conio.h>
int main (){
   int gdriver= DETECT ,gmode;
   initgraph(&gdriver,&gmode,"C:\\TC\\BGI");
   bar (100,100,200,400);
   circle(400,250,50);
   getch();
   return 0;


}

Comments

Popular posts from this blog

Snake game.c

Type declaration

Array with function