C - Numbers
Types for storing numbers.C
Other pieces of example codes:long x= -12345;
unsigned long x=70000;
double x = 3.14159265359;
signed char x= -5;
(float)27
unsigned short x=280;
You can find it in the following collections: data types
Numbers in another programming language: