Home
C/C++ Graphics Tutorial
C Tutorial
C++ Tutorial
Java Tutorial
Projects/Downloads
About Me
Browse »
Home
»
Program to draw a circle
»
Program to draw a circle
Program to draw a circle
Ads by YahooAds.in
Program to draw a circle
#include <graphics.h>
#include <conio.h>
void main()
{
int d,m;
d=DETECT;
initgraph(&d,&m,"c:\\tc\\bgi");
circle(200,200,30);
circle(200,300,50);
getch();
closegraph();
}
Output :
Ads by YahooAds.in
0 comments:
Post a Comment
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment