Learn C++

Learn How To Adapt Classic Windows C/C++ Samples To Modern C++ In C++ Builder

There are many C++ examples and many tutorials over the classic C/C++, and when you jump to Modern C++ these examples may seem to be very hard to adapt. In real, it is not complicated much, you just need to modify input and output operations to GUI based input and output components. So basically, most of classic C and C++ examples are easy to transfer to GUI based applications.In this article, we…
Read more
C++Learn C++

How To Create A Dev C++ Static Library For Windows

Welcome back to our Embarcadero Dev-C++ videos series. In this session is about creating C++ static libraries. Static libraries are collections of object files that are linked together when a file gets compiled into an executable. In this tutorial you can…
C++C++11C++14C++17Code SnippetComponentsIntroduction to C++Language FeatureLearn C++

Modern Windows "Hello World" 3D Example in C++ Builder

If you are a beginner “Hello World” examples are good to understand feature of that programming language. It is good to understand how to edit text, how to write in its format, how to compile and link, how to debug and execute, how to deploy or release. This example below is a modern “Hello World” example on Windows which runs with C++ Builder. Modern applications has…
Read more
C++C++11C++14C++17Language FeatureLearn C++Syntax

Unicode Strings in C++ On Windows

In programming, one of the most used variables is text strings, and they are sometimes really important when storing and retrieving valuable data. It is important to store your data safely in its language and localization. Most programming languages have issues when storing texts and letters. In C++, there is very old well-known string type (arrays of chars) and modern types…
Read more