Programming

C/C++ programming languages

C Types - Integer


There are the following integer types available in the C Language:

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.