C++ - Data types
C++
Other pieces of example codes:long y = -(15123 / 70);
unsigned long long y = 10250 / 8;
bool b2 = x && y;
unsigned short y = 1025 % 8;
double y = 123456789;
unsigned long y = 1025 / 8;
Data types in another programming language: