C++ - Numbers
Types for storing numbers.C++
Other pieces of example codes:long long y = -(1512345 / 70);
unsigned long y = 1025 / 8;
signed char y = -(15 % 4);
double y = 123456789;
unsigned long long y = 10250 / 8;
(float)y
You can find it in the following collections: data types
Numbers in another programming language: