C - Integers
Types for storing integers.C
Other pieces of example codes:long x= -12345;
unsigned short x=280;
signed char x= -5;
unsigned long x=70000;
unsigned char x=5;
short x= -1234;
You can find it in the following collections: numbers | data types
Integers in another programming language: