About 12,300,000 results
Open links in new tab
  1. c++ - double and accuracy - Stack Overflow

    Jun 19, 2012 · A double typically provides 16 (±1) decimal digits. Your example shows this: 4 8 12 16 v v v v 0.947368421052631578 long double 0.947368421052631526 double The answers …

  2. 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 …

  3. Biggest integer that can be stored in a double - Stack Overflow

    Dec 5, 2009 · The biggest/largest integer that can be stored in a double without losing precision is the same as the largest possible value of a double. That is, DBL_MAX or approximately 1.8 × …

  4. java - add values to double [] arraylist - Stack Overflow

    1 Create the double[] first, add the numbers to it, and add that array to the List. (The variable should likely be declared as a List, btw, not an ArrayList, unless you're specifically passing it to …

  5. verilog - What is the difference between single (&) and double ...

    Jun 26, 2013 · In IEEE 1800-2005 or later, what is the difference between & and && binary operators? Are they equivalent? I noticed that these coverpoint definitions …

  6. What's the difference between a single precision and double …

    The term double precision is something of a misnomer because the precision is not really double. The word double derives from the fact that a double-precision number uses twice as many bits …

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

    Feb 6, 2018 · For double, this is 2 1024 −2 971, approximately 1.79769•10 308. std::numeric_limits<T>::min() is the smallest positive normal value. Floating-point formats …

  8. What exactly does Double mean in java? - Stack Overflow

    Jun 12, 2011 · A Double in Java is the class version of the double basic type - you can use doubles but, if you want to do something with them that requires them to be an object (such as …

  9. How do I use bitwise operators on a "double" on C++?

    Now by accessing elements c[0] through c[sizeof(double) - 1] you will see the internal representation of type double. You can use bitwise operations on these unsigned char values, …

  10. stl - C++ Double Address Operator? (&&) - Stack Overflow

    C++ Double Address Operator? (&&) [duplicate] Asked 14 years, 10 months ago Modified 1 year, 2 months ago Viewed 230k times