C++C++11C++14C++17Introduction to C++Learn C++

Learn Implicitly Defined 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 about Declaration of a Copy Constructor

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 :: A Simple Artificial Neuron Model in C++

A Simple Artificial Neuron 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++? In this post we will explain with a very simple artificial neuron example. A Minimum Artificial Neuron has an activation value (a), an activation function ( phi() ) and weighted (w) input net links. So it…
Read more