Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #107.70K
~923 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Emmitt310

here is how i do it with turbo c++ 3.0 to draw a big circle on the screen. [CODE] #include"graphics.h" #include"conio.h" void main() { int gd=DETECT,gm; initgraph(&gd, &gm, "c:/tc/bgi "); circle(330,180,100); getch() closegraph(); restorecrtmode(); } [/CODE] it is pretty much simple and clear becarefull to provide the path to bgi …

Member Avatar for musawir
0
923

The End.