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…
Lambda Expressions allow users to write an inline expression that can be used for short snippets of code in your C++ app which are not going to be reused and don’t require naming. The Lambda Expression construct is introduced in C++ 11 and further developed in the…
How To Convert A Float To A String In A C++ App
April 5, 2022
How can I convert a floating number to a string in my C++ app? How can I put a float into a Text of a component? What is FloatToStr method? What is FloatToStrF method? Can I use FloatToStr method with double and long double too? Can we use printf() method with float in…
What Is An Eligible Copy Constructor In C++ Software?
March 29, 2022
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…
How To Read And Write Text Files In A Modern C++ App
March 28, 2022
How can I read a text file in a C++ app? How can I write to a text file in C++? How can I append to a text file in C++? How can I use open() method for the ifstream? How can I use open() method for the ofstream? How can I use open() method for the fstream? What is the syntax…
Learn About Pure Virtual Destructors In C++ App Classes
March 24, 2022
If you construct an object, sometimes you need operations to deconstruct. Destructors not only used in classes but also used with struct and union data types. Do you want to learn what a Pure Virtual Destructor is in a C++ App, or what kind of methods we have that we can…
Learn To Use Directory Operations In Your C++ App
March 23, 2022
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…
Learn To Use Windows DOS Commands In A C++ App
March 18, 2022
Do you know why we use Command Prompt or Power Shell? Can we use Windows DOS Commands in a C++ app and in other operating systems? In this post, we will explain how you can run Windows DOS commands in C++.
Apple DOS was the first family of Disk Operating Systems (DOS) for…
How can we read a formatted string in a C++ app? How can I convert a string to a stringstream ? What is string? What is std::stringstream? What are the methods that can be used to read the formatted strings? Is there a simple example on how to read a formatted string ? Is…
What You Need To Learn About Using Bits In C++ Software
March 11, 2022
How can we print numbers in binary form? How can we set a bit in an integer? How we can set, clear, or toggle bits (binary digits) of a number? How can we change the nth bit of a number? In this post, we will answer these questions and use them in our own C++ software. First let’s remind ourselves where bits come from.
A brief background to CPU architecture
The construction, size…