C++ Programming Gallery

PIX SNAKE game in C++, using graphics.h BGI library

Snake game with slightly different game mechanics that will bring you interesting challenges Developed by: Copyright (c) 2010, Juan Villalvazo…

Read More »

The Koch Curve in C++, using graphics.h BGI library

Diagram of the Koch curve: “Starting from a segment which is divided into three equal parts. The central part is…

Read More »

Example of overloading the + operator in C++(Chain Concatenation)

Cstring class that supports string concatenation, ie, that joins the contents of 2 strings and adds them to another target…

Read More »

Prime Number Detector in C++

Program that determines if an entered number is a prime number. Programa que determina si un número ingresado es un…

Read More »

Triangle in C++, using graphics.h BGI library

Plots a triangle in a 3D system on the screen rotating around the axe Z. Its initial coordinates are read…

Read More »

How to Draw a Bitmap BMP in C++ (BMPPlus), using graphics.h BGI library

Similar to PCXPlus but graphics bitmaps (BMP) using low-level drawing routines in 320×200 and 640×480 resolutions with 256 colors. Developed…

Read More »

Example of object-oriented programming in C++ (Bouncing Balls)

A simple example of OOP (Object Oriented Programming), in which like some balls bouncing on the limits of our screen…

Read More »

Ping Pong game in C++, using graphics.h BGI library

Classic Ping Pong game with scores and increased ball speed. The game is given to FT5 (the player who first…

Read More »

How to Draw a Bitmap BMP and PCX in C++ (IMGBGI), using graphics.h BGI library

After such a long time without updating PCXBGI, I decided to do something more productive, like a universal image loader,…

Read More »

Challenge 15 – Display the calendar for the month of a given date in C++

Difficulty x10x5 This Challenge was proposed for the now defunct C/C++ programming list CWORLD in 1999.The source code of the…

Read More »
Back to top button