About 22,900,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. Correct format specifier for double in printf - Stack Overflow

    Format %lf in printf was not supported in old (pre-C99) versions of C language, which created superficial "inconsistency" between format specifiers for double in printf and scanf.

  3. c++ - Double precision - decimal places - Stack Overflow

    Oct 20, 2017 · From what I have read, a value of data type double has an approximate precision of 15 decimal places. However, when I use a number whose decimal representation repeats, …

  4. decimal vs double! - Which one should I use and when?

    Jul 22, 2009 · When should I use double instead of decimal? has some similar and more in depth answers. Using double instead of decimal for monetary applications is a micro-optimization - …

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

  6. methods - Double vs double in java - Stack Overflow

    Nov 11, 2012 · Possible Duplicate: Java : different double and Double in comparison In a sample java program for one of my labs, I have two different methods taking Double and double …

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

  8. Difference between long double and double in C and C++

    Apr 22, 2015 · Possible Duplicate: long double vs double I am new to programming and I am unable to understand the difference between between long double and double in C and C++. I …

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

    Jul 2, 2009 · A double has a much higher precision due to it's difference in size. If the numbers you are using will commonly exceed the value of a float, then use a double. Several other …

  10. java - Cast Double to Integer - Stack Overflow

    494 A Double is not an Integer, so the cast won't work. Note the difference between the Double class and the double primitive. Also note that a Double is a Number, so it has the method …