C++CodeIDERAD Studio

What Are The Container Adapters in Modern C++?

Hello developers, here we will explain the container adapters. Before I get into that, as a C++ Builder developer, I should say that these past few weeks have made me so happy that we released the new RAD Studio 12.1. This release has massive C++ upgrades to the new Windows 64-bit Modern Compiler along with new VCL/FMX/Skia options to help with modern programming. There were also a lot of new…
Read more
C++Code

What Changed With The C++17 Standard?

Hello developers, this week we have more new topics about C++ and there are tons of very understandable examples to develop with that can be used to develop new apps with modern programming tools. In the first post, we explain another useful container, the multiset…
C++CodeIDERAD Studio

A Complete Guide To The List Of Features In C++ 14

C++ is one of the most powerful programming languages and it is being improved by every new C++ standard. The “Modern C++” term started with the release of the C++11 standards, and then extended further with the C++14, C++17, and C++20 standards. In the future C++23 is already on the horizon. Modern C++ consists of a lot of features of previous C++ standards too and, of course, those of the C…
Read more
C++Code

A Complete Guide To The List Of Features In C++ 11

C++ is one of the most powerful programming languages and it is being improved by every new C++ standard. The “Modern C++” term started with the release of the C++11 standards, and then the C++14, C++17, and C++20 standards followed. In the future C++23 is on the horizon…
C++CodeRAD Studio

What Are The C++ 17 Random Number Generators

Hello developers, I hope you are all happy and well. This week we have new C++ posts about modern random generators in modern programming today. Since C++11, in addition to rand() and std::rand(), we have new random number generators. These are called Mersenne Twister random generators; mt19937 (std::mt19937) for 32-bit applications and mt19937_64 (std::mt19937_64) for 64-bit applications. In the…
Read more
C++CodeRAD Studio

Let's Develop A C++ Optimization AI App By Using Genetic Algorithms

Hello Everyone, this week we have new C++ posts that can be compiled with C++ Builder (versions 10, 11, or 12) or any other compiler that supports C++17 standard and beyond. AI technologies are evolving rapidly, and our first post is about the Genetic Algorithm (GA), first mentioned by Željko Kovačević (Embarcadero MVP). Željko has amazing VCL Examples and blog posts about C++ Builder.
Read more