Name: Anonymous 2010-05-22 15:00
Does it really matter if something is a float or an integer? I mean COME ON!
float a = 1.0; will leave you with a float stored in a. You can write 1.0f instead, but it's unnecessary. Even -Wall -Wextra -pedantic doesn't complain about it.