Programming

C/C++ programming languages

C Types - Float


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;