C++C++11C++14C++17Language FeatureLearn C++

Learn To Count Prime Numbers In Visual Studio Code C++

Visual Studio Code Visual Studio Code (also called VS Code) is one of the most popular free IDEs, published by Microsoft. We can say it is a free version of Visual Studio. It can be used with MinGW Linux Simulation (with GNU C/C++ Compiler) to develop C++ applications running on the command console. It is the most well-known open-source code editor for a wide variety of languages, and it can…
Read more
Language FeatureLearn C++

Quickly Learn To Develop A Simple Windows Paint Application in Modern C++

Do you want to develop a Paint like application on windows? In this project we will develop a simple paint application in Modern C++ for windows. Before this we would like to recommend you our previous posts about Bitmap Operations In C++ Builder (FireMonkey) and Quickly Learn How To Use Canvas Drawing In C++ On Windows. This example is good to learn how to use graphics. When you code in C++…
Read more
C++C++11C++14C++17Learn C++

Easily Learn To Find Prime Numbers In Modern C++

Prime numbers are interesting area to research. A prime number, it is also called prime shortly , is a natural number (a positive integer)  greater than 1 that is not a product of two smaller natural numbers. If a number is not prime then it is called as a composed number. There are several mathematical questions regarding prime numbers are still unsolved.  Finding them and relations and…
Read more
C++Language FeatureLearn C++

Learn How To Easily Record Sound In Powerful Modern C++ On Windows

Sounds are in wave format and in digital form sound has its volume change in timeline. In C++ Builder it is easy to use recording devices on Windows. To record a sound in Multi-Device applications we must use FMX.Media.hpp header. 1. Let’s create a new MultiDevice C++ Builder Project, save all project and unit files to a folder. 2. To define Audio Capture Device we need FMX.Media…
Read more