Course Content
C++ Introduction
C++ Introduction
Data Types
When declaring a variable, you need to specify what type of data we will store in it. There are data types for easy memory handling for every situation.
Numerical
These types are essential for storing numerical values and manipulating numeric data. We can split them into two groups: integers and decimals.
integers
decimals
// examples of literal integers 5 100 30
Bool
The bool
data type represents two boolean values: zero interpreted as false and one is interpreted as true.
Char
The char
data type is used to store individual characters, which can include letters, digits, punctuation marks, and special characters.
main
#include <iostream> #include <typeinfo> int main() { std::cout << "The data type is " << typeid(5).name() << std::endl; }
Thanks for your feedback!