Search
 
SCRIPT & CODE EXAMPLE
 

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();
}
Comment

PREVIOUS NEXT
Code Example
C :: write array of char to file in c 
C :: fractional knapsack problem in c 
C :: how to check if a string pointer is empty in c 
C :: insertion sort c 
C :: vbnet create and write on file 
C :: how to modulo in c without % 
C :: c if 
C :: comment c 
C :: c char to lower case 
C :: space x 
C :: comment in c language 
C :: multiplication table in c 
C :: #define arduino 
C :: C first digit of integer 
C :: simple calculator, using switch statement in C 
C :: arrays in c 
C :: malloc basics 
C :: printf("%3d ",XX); 
C :: c concatenate and allocate string 
C :: c double 
C :: to execute a program using C 
C :: pointer arithmetic on Arrray in c 
C :: C program to find power of any number 
C :: while loop in c 
C :: how to print logs when doing unit-testing in rust 
C :: man strstr 
C :: address operator 
C :: c to c convertor 
C :: how can i learn c game development 
C :: C Assigning addresses to Pointers 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =