draw a circle in C | Cirlce Graphic in C




draw a circle in C





#include
#include

main()
{
int gd = DETECT, gm;

initgraph(&gd, &gm, "C:\\TC\\BGI");

circle(100, 100, 50);

getch();
closegraph();
return 0;
}


1 comment:

  1. HI Please anyone tell me how to create a circle in keil compiler, in any mode using anything in 8051 microcontroller. we may display it in LCD display also but how to write a code for it and debug.

    ReplyDelete