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++11C++14C++17Learn C++

Switch Statement in Modern C++

The C++ language provides the switch statement which can be used to replace the set of if statements (see If Statements in Modern C++). First of all, let’s define the enum type Traffic_light_color as follows: enum class Traffic_light_color { red, yellow, green…
C++Learn C++Videos

Learn C++ With Building an Intuition for Composition by Sy Brand (CPPCon 2020) Video

This video is for you if you’re tired of reading posts about “monads” and “endofunctors” that does not give you an idea of how they can actually support and improve your C++ programming. In C++, functions and data composition are becoming more relevant because of features such as ranges, continuable features, and new techniques for error handling. This session will…
Read more
C++Learn C++Videos

Dev-C++ Download And Installation

Welcome to new Embarcadero Dev-C++ video series. In this series, I will introduce you the new Embarcadero Dev-C++. In this tutorial, you learn about Embarcadero Dev-C++ and its installation. Embarcadero Dev-C++ is a new and improved fork (sponsored by Embarcadero) of Bloodshed Dev-C++ and Orwell Dev-C++. It is a full-featured Integrated Development Environment (IDE) and code editor for the…
Read more