VOOZH about

URL: https://www.geeksforgeeks.org/c/creating-rainbow-using-graphics-programming-c/

⇱ Creating a Rainbow using Graphics Programming in C - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Creating a Rainbow using Graphics Programming in C

Last Updated : 23 Jul, 2025
In Turbo C graphics we use graphics.h functions to draw different shapes(like circle, rectangle etc), display text(any message) in different format(different fonts and colors). By using graphics.h we can make programs, animations and also games. These can be useful for beginners. Functions Used :
  • delay(n): A function from dos.h header file is responsible for holding of the program for a while depending upon given value n.
  • setcolor(n): A function from graphics.h header file which set the color of pointer(cursor).
  • arc(x,y,a1,a2,r): A function from graphics.h header file which draw an arc with (x,y) as centre (a2-a1) as angle and r as radius.
Implementation: Reference:https://xcnotes.com/graphics-in-c-language/draw-rainbow-in-c
Comment
Article Tags: