13.1 — Introduction to program-defined (user-defined) types
Because fundamental types are defined as part of the core C++ language, they are available for immediate use. For example, if we want to define a variable with a type of int or double, we can just do so: int x; // define variable of fundamental type ‘int’ double d; …