Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

Graphics in C Draw Circle


#include<graphics.h>
main()
{
  int driver, mod;
  driver = VGA;
  mod    = VGAHI;
  initgraph(&driver, &mod,"C:	cgi");
  setcolor(RED);
  circle(320,240,50);
  getch();
  closegraph();
}
Source by www.codemodes.com #
 
PREVIOUS NEXT
Tagged: #Graphics #C #Draw #Circle
ADD COMMENT
Topic
Name
2+2 =