Programming
C Types - Integer
There are the following integer types available in the C Language:
- short int
- unsigned short int
- int
- unsigned int
- long int
- unsigned long int
In my Fedora Linux:
short s;
unsigned short us;
int i;
unsigned u;
long l;
unsigned long ul;
float f;
double d;
long double ld;
const int ci;
limits.h
In Fedora, glibc-headers includes limits.h header file which you can browse ot the actual limits of data types for your architectura.