The header file graphics.h contains
fillellipse() function which draws and fills an ellipse with center at (x, y) and (x_radius, y_radius) as x and y radius of ellipse.
Syntax :
void fillellipse(int x, int y, int x_radius,
int y_radius);
where,
(x, y) is center of the ellipse.
(x_radius, y_radius) are x and y
radius of ellipse.
Examples :
Input : x = 200, y = 200,
x_radius = 50, y_radius = 90
Output : 👁 Image
Input : x = 300, y = 250,
x_radius = 100, y_radius = 70
Output : 👁 Image
Below is the implementation of fillellipse() function :
Output :
👁 Image