Generally we try to prepare our posts for a first time C++ readers or we assume reader read some posts about that topic before. At least we try to simplify and clarify the post as much as possible. This post requires a good knowledge about Functions, Classes, Objects. These topics are the main stones of C++ programming. So If you feel hard to understand all below, or if you are not really sure of…
Generally we try to prepare our posts for a first time C++ readers or we assume reader read some posts about that topic before. At least we try to simplify and clarify the post as much as possible. This post requires a good knowledge about Functions, Classes, Objects and…
Learn C++ With Surprising Costs of void() (and Other Not-Quite-Innocuous Evils) by Patrice Roy (CPPCon 2020) Video
May 20, 2021
There are some things that could happen to us without us noticing them as evil or, as they have come to be known, Bad Code Smells. In some cases, many of these little things are acceptable, and thus go unnoticed in some of the code reviews. The idea for this talk came up…
What is Self Regularized Non-Monotonic Activation Function in Neural Networks? How we can use the Mish function in ANN? Where can we use Mish in AI technologies? Let’s remember the activation function and explain these terms.Activation Function( phi() ) also…
How to Set Up C++Builder for Your First Project
May 11, 2021
In this article we will go through the steps required to set up C++Builder. By the end of this article you will have learnt how to set up your development environment and will be ready to build your first project. Let’s go through the steps one by…
Tutorial: Dev-C++ OpenMP Parallel Programming
May 11, 2021
In this video tutorial you will learn how to use OpenMP Parallel Programming library which helps you to make high performance applications. The latest fork of Dev-C++ is called Embarcadero Dev-C++. Dev cpp can be downloaded from Embarcadero’s site, Sourceforge, and Github.
OpenMP is a set of compiler’s directives, library procedures and environment variables which was developed for…
NewRad Studio 10.4.2has been released, which means that bothDelphi 10.4.2andC++ Builder 10.4.2has been released together or separately! It comes with many bug fixes, several new features, enhancements, and quality updates. It has been…
Learn about C++ Encapsulation
May 8, 2021
Object Oriented Programmingis a way to integrate with objects which can containdata(in the form of attributesorpropertiesof objects), andcode blocksin the form of procedures (methods,functionsof objects). These…
Discover Class Methods in C++
May 7, 2021
Object-Oriented Programmingis a way to integrate with objects that might containdata(in the form of attributesorpropertiesof objects), andcode blocksin the form of procedures (methods,functionsof objects). These attributes and methods arevariablesandfunctionsthat belong to the class, they are generally referred to…