VOOZH about

URL: https://www.geeksforgeeks.org/c/draw-circle-c-graphics/

⇱ Draw circle in C graphics - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Draw circle in C graphics

Last Updated : 6 Dec, 2019
The header file graphics.h contains circle() function which draws a circle with center at (x, y) and given radius. Syntax :
circle(x, y, radius);

where,
(x, y) is center of the circle.
'radius' is the Radius of the circle.
Examples :
Input : x = 250, y = 200, radius = 50
Output : 👁 Image
Input : x = 300, y = 150, radius = 90 Output : 👁 Image
Below is the implementation to draw circle in C: Output :
👁 Image
Comment
Article Tags: