float f = 99.32f ;
That is a float literal, which means a float variable being assigned with a float value directly.
float f = (float) 99.32 ;
That is a float variable that is assigned a double value that is cast to float before being assigned.