C program to design a hot air balloon using graphics
In this article, we will discuss how to design a Hot Air Balloon in the C using Graphics....
read more
C program to draw Eiffel Tower using computer graphics
In C graphics, the graphics.h functions are used to draw different shapes like circles, rectangles, etc, display text(any message) in a different format (different fonts and colors). By using graphics.h one can make programs, animations, and also games....
read more
Program to draw India Gate using computer graphics in C
In C graphics, the graphics.h functions are used to draw different shapes like circles, rectangles, etc, display text(any message) in a different format (different fonts and colors). By using graphics.h one can make programs, animations, and also games....
read more
C program to draw a cricket ground using computer graphics
In this article, we will discuss how to draw a 2D cricket ground is being designed using computer graphics....
read more
C program to display the animated firecrackers with a message using graphics
In this article, we will discuss how to draw the Rocket using Graphics....
read more
C program to create a Rocket using Graphics
In this article, we will discuss how to draw the Rocket using Graphics....
read more
getx() function in C
The header file graphics.h contains getx() function which returns the X coordinate of the current position. Syntax :...
read more
Bezier Curves in OpenGL
OpenGL is a cross-language, cross-platform API for rendering 2D and 3D Vector Graphics. It is used to perform a lot of design as well as animation using OpenGL. In this article, we will discuss the concept and implementation of the Bezier Curves OpenGL....
read more
setcolor function in C
The header file graphics.h contains setcolor() function which is used to set the current drawing color to the new color. Syntax :...
read more
How to create a Heart using C Graphics
Prerequisite: graphics.h, How to include graphics.h?...
read more
outtext() function in C
The header file graphics.h contains outtext() function which displays text at current position....
read more
Implementation of AVL Tree using graphics in C++
AVL Trees are self-balancing Binary Search Trees where the difference between heights of left and right subtrees cannot be more than one for all nodes. Below is the example of the AVL Tree:...
read more