circle
This function is used to draw a circle without filling.
void circle(
int x,
int y,
int radius
);
Parameters
x
The x-coordinate of the center.
y
The y-coordinate of the center.
radius
Radius of the circle.
Return Value
None
Remarks
This function draws a circle without filling using the current line style.
Examples
None