Learn C++ With Modern Software Needs Embedded Modern C++ Programming by Michael Wong
December 12, 2020
This video discusses about Embedded Modern C++ Programming. It showcases common C++ features for each cases with Adopting to C++ and gradual adoption for various sizes of systems. Hopefully, this summary will give programmers a better understanding and practical view of what…
Learn About C++ Object and Library Compatibilities On Windows
December 12, 2020
Next up in the Rapid C++ Development series is a video about Object and Library Compatibilities. This video demonstrates how to integrate externally built object files with your C++ builder application. This is done by using the C++ builder IDE known as the RAD Studio and…
Learn How To Combine Embarcadero C++Builder And Visual C++ For Windows Development
December 11, 2020
In this video, you will get an overview of the course, discussing why you would combine Embarcadero C++ builder with Microsoft Visual C++. This video series will cover the development of Windows applications using C++ builder for the GUI or the graphics front end of the…
Learn C++ With Back to Basics: Pointers and Memory by Ben Saks (CPPCon 2020) Video
December 10, 2020
In modern C++, the common wisdom is to prefer smart pointers over raw pointers. But since they are still so common in C++ code and C++ libraries, many C++ programmers do not stop using them. If that’s the case, then they should learn how to use them efficiently. This…
This video introduces what generic programming is, along with the different kinds of functions, namely: function, class, and method templates. After tackling the basics, this will help you keep in mind that codes should not be all about the templates. This is mostly for the…