This is an old revision of the document!


Built-in (fundamental) C++ data types:

  • integral
    • bool (true, false)
    • char, wchar_t
    • int, long, long long
  • floating point
    • float
    • double
    • long double
  • void

User-defined types:

  • enumerations
  • classes

Also consult:

  • <cstdint>
  • <numeric_limits>
  • <cstddef>

New with C++11:

  • alignas
  • alignof
  • c_data_types.1517653695.txt.gz
  • Last modified: 2018/02/03 10:28
  • by rpjday