circle function is used to draw a circle with center (x,y) and radius of the circle.
सर्किल फंक्शन के द्वारा एक केंद्र (x,y) एवं त्रिज्या के साथ सर्किल तैयार किया जाता है।
Syntax:-
void circle(int x, int y, int radius);
Program:-
#include<graphics.h>
#include<conio.h>
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "C:\\TC\\BGI");
circle(100, 100, 50);
getch();
closegraph();
return 0;
}
No comments:
Post a Comment