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