C++Learn C++Videos

Learn C++ With C++ Standards Committee Fireside Chat (CPPCon 2020) Video

Learn C++ Standards through this panel discussion lead by members of the C++ Standard Committee. Alongside the C++’s creator, the panelists also include leaders of key subgroups, who are the ones responsible for the evolution of language and library and subjects. The panel discussion also provides a portrayal of new forward-thinking with the members of some of the newest national bodies to…
Read more
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++11C++14C++17Learn C++

The Main Function of a C++ Program

The source code written in C++ must be compiled (i.e. translated to the machine code) by one or another compiler such as Embarcadero RAD Studio C++ compilers before in can be runned. In general, there are two types of the resulting machine code: library and main executable…