Programming
C Types - Float
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;