+ 1
What's the difference between double and floating point data types if there is any??
Data types
3 Réponses
+ 2
Thanks, very helpful information
+ 1
It can give double precisions than floating
Like if 1/3 in the float is 0.33
Then in double, it's 0.3333
0
The Decimal, Double, and Float variable types are different in the way that they store the values.
Float - 32 bit (7 digits)
Double - 64 bit (15-16 digits)
Decimal - 128 bit (28-29 significant digits)