0

How many data types in C++ Language

26th Dec 2016, 5:28 PM
pawan patidar
pawan patidar - avatar
2 Answers
+ 3
Mainly bool, char, strings, int, float, double, decimal, long, void(pointers), short, long doubles, long long, int long. In the future where you need to import more libraries, you will encounter more datatypes
26th Dec 2016, 7:20 PM
Wen Qin
Wen Qin - avatar
0
Built-in types: bool, char(with signed, unsigned versions), wchar_t, short, int, long, long long, float, double, long double, pointers All integer types are signed or unsigned. signed short a; unsigned short b; Standart library of C++ and C has a lot if structures and classes. It's hard to count them all.
26th Dec 2016, 6:34 PM
Vladislav
Vladislav - avatar