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