C++Introduction to C++Language FeatureLearn C++

How To Include Or Exclude Trailing Backslashes On Windows

C++ Builder has a lot of specific methods in its SysUtils library that are included in the VCL and FMX libraries. Some of these are grouped as Path Manipulation Routines that allow users to edit, extract, get and set drive name, directory name, file name, and file extensions. These methods are combined in the Vcl.FileCtrl, System.IOUtils,  System.SysUtils libraries. These methods are easy to…
Read more
C++Introduction to C++Language FeatureLearn C++

How to Get Disk Information in C++ on Windows?

C++ has a lot of great libraries to operate on files, folders, and disks. We can create or delete directories by using System Commands that we explained before in this post or we can use C++ standard library methods. In C++ Builder, we can use both of them and we can also use Disk And Directory Support Routines to create or remove directories or to get information about disks, directories, and…
Read more
CC++C++11C++14C++17Introduction to C++Learn C++

How To Use Malloc() And Free() Functions In C/C++

In programs, all data and operations during runtime are stored in the memory of our computers, including IoT or other microdevices. This memory is generally a RAM (Random Access Memory) that allows data items to be read or written in almost the same amount of time irrespective of the physical location of data inside the memory. In this post, you’ll learn how to use memory in C and C++…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Use C++ To Get And Set Current Directory On Windows

C++ Builder has a lot of specific methods in its SysUtils library that are included in the vcl and fmx libraries. Some of these are grouped as Path Manipulation Routines that allow users to edit, extract, get and set drive name, directory name, file name, and file extensions. These methods are combined in Vcl.FileCtrl, System.IOUtils,  System.SysUtils libraries. These all methods are easy to…
Read more