About 9,310,000 results
Open links in new tab
  1. What is the difference between float and double? - Stack Overflow

    Dec 31, 2021 · I've read about the difference between double precision and single precision. However, in most cases, float and double seem to be interchangeable, i.e. using one or the …

  2. Should I use double or float? - Stack Overflow

    Jul 2, 2009 · 1 The main difference between float and double is precision. Wikipedia has more info about Single precision (float) and Double precision.

  3. What is the inclusive range of float and double in Java?

    Nov 5, 2013 · What is the inclusive range of float and double in Java? Why are you not recommended to use float or double for anything where precision is critical?

  4. Ranges of floating point datatype in C? - Stack Overflow

    Nov 8, 2018 · The values for the float data type come from having 32 bits in total to represent the number which are allocated like this: 1 bit: sign bit 8 bits: exponent p 23 bits: mantissa The …

  5. How are floating point numbers stored in memory? - Stack Overflow

    Jul 23, 2019 · To understand how they are stored, you must first understand what they are and what kind of values they are intended to handle. Unlike integers, a floating-point value is …

  6. Why are floating point numbers inaccurate? - Stack Overflow

    Why do some numbers lose accuracy when stored as floating point numbers? For example, the decimal number 9.2 can be expressed exactly as a ratio of two decimal integers (92/10), both …

  7. What are the actual min/max values for float and double (C++)

    Feb 6, 2018 · The std::numerics_limits class in the <limits> header provides information about the characteristics of numeric types. For a floating-point type T, here are the greatest and least …

  8. java - What is the difference between the float and integer data …

    Jan 26, 2011 · float stores floating-point values, that is, values that have potential decimal places int only stores integral values, that is, whole numbers So while both are 32 bits wide, their use …

  9. Difference between decimal, float and double in .NET?

    Mar 6, 2009 · What is the difference between decimal, float and double in .NET? When would someone use one of these?

  10. How to use % operator for float values in c - Stack Overflow

    How to use % operator for float values in c Asked 13 years, 9 months ago Modified 7 years, 7 months ago Viewed 72k times

Refresh