C++ Programming

Computer Programming Blog

Construct Video Game Engine

Construct is an HTML-5 based 2D gaming engine developed by Scirra Ltd. Written in C++ and JavaScript language-focused fundamentally for non-programmers. It allows visual programming making it easier for artists to give life to their imagination into the game. Construct is not a template engine; it has a complete set of tools to create something unique and genuinely your creation.

,
Cafu Game Engine Main Menu
Computer Programming Blog

Cafu Game Engine

The Cafu Engine is a multipurpose and cross platform 3D graphics software and game development software, developed by Carsten Fuchs. The engine is specialized in the creation of 3D applications, games, simulations, training and architectural software. Written in C++ and Lua language, the Cafu Game Engine intends to make the advancement of new games and other 3D applications simple. The engine is effectively and consistently developed to give the most recent innovation.

,
City Bus Simulator
Computer Programming Blog

C4 Game Engine Developed in C++

C4 Game development engine is developed in C/C++ based on OpenGL. It was first developed in 2005 by Terathon Software and made commercially available for developers worldwide. It supports multiple gaming platforms such as Windows, OS X, PS4, PS3, and Linux. It is used for the creation of high graphics 3D games for both consoles and PC. The gaming engine is also capable to build interactive virtual simulations allowing the developers to dive into the new dimensions to create amazing stuff.

,
C++ Tutorials & Articles – Learn C++ Basics, Features & Compilers

C++ Standard Template Library – List

The Standard Template Library (STL) is one of the most essential features of C++. It has very much grown in recent years. Basically, the Standard Template Library provides templatized, general-purpose classes as well as methods. These classes and functions/methods implement several popular and most commonly used algorithms as well as data structures.

,
Computer Programming Blog

C++ 17 – New and Removed Features

You must have heard that C++17 is now feature full or feature complete. C++ 17 is the most recent version of C++ programming language revised by ISO/IEC 14882 standard. Its specification reached the DIS (Draft International Standard) stage in March 2017 and after approval, the final standard was published in December 2017. Hundreds of proposals were put forward for updating the features in C++17.

, ,
vectors in C++
C++ Tutorials & Articles – Learn C++ Basics, Features & Compilers

C++ Vector – std::vector – A Complete Guide with Examples and Programs

Vectors in C++ are highly versatile sequence containers that provide dynamic resizing and efficient memory management. This guide covers topics ranging from vector initialization to advanced techniques for vector manipulation and acts as a comprehensive resource for developers who want to deepen their understanding of this essential container in C++.

, ,
Quadratic Formula and Quadratic Equation
C++ Source Code Examples – Classes, Inheritance & Polymorphism

C++ Program to Solve the Quadratic Equation

This program will solve quadratic equations. It accepts coefficients of a quadratic equation from the user i.e. a, b and c and displays the roots. To compile the program name it quadratic_solver.cpp then type g++ -o quadratic_solver quadratic_solver.cpp You may need to use math.h like this: #include if you are using windows C++ programming software. (I tried it without the math.h and got an “undeclared identifier” error)

,
Scroll to Top