I\'ve seen code where people initialize float variables like this:
float num = 0.0f;
Is there a significant difference between this and jus
'f' indicates that you want a float :
0 is an int
0f is a float
0.0 is a double
0.0f is a float