diff --git a/src/data/roadmaps/cpp/content/100-introduction/index.md b/src/data/roadmaps/cpp/content/100-introduction/index.md index f47d3f93f..7bca193d0 100644 --- a/src/data/roadmaps/cpp/content/100-introduction/index.md +++ b/src/data/roadmaps/cpp/content/100-introduction/index.md @@ -49,6 +49,7 @@ C++ has several basic data types for representing integer, floating-point, and c - `float`: single-precision floating-point values - `double`: double-precision floating-point values - `char`: single characters +- `bool`: boolean values Variables must be declared with a data type before they can be used: @@ -57,6 +58,7 @@ int x; float y; double z; char c; +bool b; ``` ## Control Structures