C++C++11C++14C++17Introduction to C++Learn C++

How To Get A Substring Of A String In A C++ App

How can I use substr() method of std::wstring? How can I get a substring of a string in a C++ app? Here are the answers with C++ examples. Generally, as an introduction to C++, in addition to int, float, double there is another data type called string that we use for alphanumeric variables. In C++ there are several typedefs for common character types are provided: String types are defined in…
Read more
C++C++17Introduction to C++Language FeatureLearn C++

This Is How To Use Time And Its Properties In C++ Software

How can we use Time when writing C++ software? How can we obtain local time or UTC time in our C++ apps? How can we get each property of a time such hours, mins, seconds? In programming we have two important parameters that we use, which are Date and Time properties. The date and time properties are obtained from a timer or time module such as an RTC DS3231 module which is used on IoTs. The…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

What Is An Eligible Copy Constructor In C++ Software?

Do you want to learn what is Eligible Copy Constructor or what kind of methods are available to declare and use an Eligible Copy Constructor? In this post, we will try to explain the Eligible Copy Constructor with examples. First, let’s remind ourselves of the Constructor and Copy Constructor meaning in C+++ software. What is a Constructor in C++ software? The Constructor in C++ is a…
Read more
C++C++17Introduction to C++Learn C++

Learn To Use Directory Operations In Your C++ App

Do you want to use DOS commands to operate on directories or folders? Do you know that you can use system commands in C++ to operate on folders? How can we get our C++ App to list files of a folder, how we can copy, rename, delete, or move directories? Can we set the access permissions of a directory by using system commands in C++? We will explain all the answers to these questions below.C++ is a…
Read more