C++ - Integers
Types for storing integers.C++
Other pieces of example codes:long long y = -(1512345 / 70);
unsigned long long y = 10250 / 8;
short y = -(1500 % 60);
long y = -(15123 / 70);
unsigned long y = 1025 / 8;
unsigned short y = 1025 % 8;
You can find it in the following collections: numbers | data types
Integers in another programming language: