Data types

Introduction C++ or Cpp is a programming language derived from c that is also considered as a middle-level programming language, due to the capability of handling hardware level and its human like readability. This makes it heavily powerful tool or a risky nightmare if the code is miss set. Variables and Types Cpp is a statically typed programming language, which means that the variables must be declared before being compiled. Cpp present the fallowing data types: ...

February 12, 2026 · 5 min · E-ger

Data structure

Data structures Data structures are fundamental components used to organize, manage and store data. In C++, those are the built-in arrays, the standard template library (STL) and user-defined structures. Depending on the situation, you can use a particular STL adapted to the task in hand, or build your own. Arrays In Cpp an array is a variable that can store multiple values of the same type by assigning a memory slot for those values. Arrays are statics assigned, which means that when they are created they will not allow more values inside, but they are mutable. ...

February 13, 2026 · 9 min · E-ger