+ 1
What is difference between float and double type variable?
6 Respostas
+ 5
"double" is a "float" with more precision
+ 3
Float is 4 bytes (1.4*10^-45 .. 3.4*10^38)
Double is 8 bytes (4.9*10^-324 .. 1.8*10^308)
+ 2
*with double precision actually
+ 1
double is the advanced version of float in short float+increased range=double...!!
+ 1
the amount of storage space given to you under double is greater than than the storage amount offered by float that's the only difference....
0
thanks for answer.