C++Game DevelopmentLearn C++

Learn to Develop a Text Based Simple Adventure Game in C++ on Windows

Before all those buttons, joysticks, controllers, mouse peripherals, and these 3D games with high graphics, textures, effects, reflections, animations, and sounds; in the first times of computers there were text-based games which you move your character by commands and it tells you (prints out) what is happening or what you should do. A text game, also called a text-based game, is a game…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

Learn Implicitly Declared Default Constructor in C++

The Constructorin C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object of a class is created, the Constructor allows the class to initialize member variables or allocate storage. This is why the name Constructor is given to this…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

Learn Defaulted Default Constructor in C++

The Constructorin C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object of a class is created, the Constructor allows the class to initialize member variables or allocate storage. This is why the name Constructor is given to this…
Read more
Artificial Intelligence TechC++Learn C++

AI Techs :: Class Based Artificial Neuron Model in C++

Do you want to develop your of artificial intelligence application from the scratch ? Want to learn how you can develop a simple artificial neuron model in C++ with Classes ? In this post we will explain with a very simple artificial neuron example using with Classes. We have released A Simple Artificial Neuron Model in C++ and Very Simple Artificial Neural Network (ANN) Example in C++ and we also…
Read more