Why do I need to put 3.14f instead of 3.14 to disable all those warnings ? Is there a coherent reason reason for this ?
|
That's what the C++ (and C) standard decided. Floating point literals are of type double, and if you need them to be floats, you suffix them with a
|
||||
|
|
C and C++ prefer double to float in a couple of ways. As you noticed, fractional literals are double unless explicitly made floats. Also, floats can't be passed in varargs, they're always promoted to double (in the same way char and short are promoted to int in varargs). It's probably better to think of |
||||
|
|
|
This is not peculiar to MSVC, it is required by the language standard. I would suggest that it made sense not to reduce precision unless explicitly requested, so the default is double. The 6 significant digits of precision that a single-precision float provides is seldom sufficient for general use and certainly on a modern desktop processor would be used as a hand coded optimisation where the writer has determined that it is sufficient and necessary; so it makes sense that an explicit visible marker is required to specify a single-precision literal. |
|||
|
|
This is probably a standard in C world. Double is preferred since it's more precise and you probably won't see any performance differences. Read this post. |
|||||||
|
|
Because 3.140000000000000124344978758017532527446746826171875 ( 3.1400001049041748046875 ( |
|||
|
|
