The following C code will draw a rectangle. I know how to draw the ellipse, but how can i draw an ellipse into this rectangle?
#include<graphics.h>
#include<conio.h>
main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "C:\\TC\\BGI");
rectangle(100,100,200,200);
getch();
closegraph();
return 0;
}