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 learn: Benefits of using Static LibraryDisadvantages of Static LibraryHands on experience on building Static Library with…
Read more
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 }; Then, the following snippet: // Snippet 1 #include <stdexcept> #include <string_view> std::string_view…
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…
C++C++11C++14C++17Learn C++

Learn About Delimiters (Tokens) in Modern C++ On Windows

Delimiters (token term also used) are characters which separates strings between each of them. For example spaces, comas and other symbols can be used as a delimiter char to separate strings between them . Normaly in C++ strtok() were being used in C++, that is used with chars. In Modern C++, strings are now UnicodeStrings, TStringlists has some property to extract strings. If you are new to…
Read more