Horje
Graphics in C Draw Circle Code Example
Graphics in C Draw Circle

#include<graphics.h>
main()
{
  int driver, mod;
  driver = VGA;
  mod    = VGAHI;
  initgraph(&driver, &mod,"C:\\tc\\bgi");
  setcolor(RED);
  circle(320,240,50);
  getch();
  closegraph();
}




C

Related
docker exec Code Example docker exec Code Example
how to combine strings in c Code Example how to combine strings in c Code Example
append to list in c Code Example append to list in c Code Example
initialize array in c with 0 Code Example initialize array in c with 0 Code Example
how to print a file c Code Example how to print a file c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9