I've seen code where people initialize float variables like this:
float num = 0.0f;
Is there a significant difference between this and just doing the following below?
float num = 0;
Thanks.. :)
question from:https://stackoverflow.com/questions/5199338/what-is-the-significance-of-0-0f-when-initializing-in-c