Used in the declaration section of code, which is before any statements.
Example
float aFloat; // A stand alone declaration of a float. float a, b; // Declaring two floats at the same time. float c = 12.123456; // Declaring and initializing a float at the same time.
Remarks
Unlike other languages, the float data type is actually a class.