Difference between float and double

Status
Not open for further replies.

Mahammad

Member level 3
Joined
Jul 8, 2011
Messages
56
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
1,632
Hi,
i have a big confusion using float and double data types .any one have idea about its use and limitations.
 

float and double both are used for floating point and (irrational and rational) numbers size of float is 4 bytes in c and range of +/- 3.4e +/- 38 (~7 digits) and for double : +/- 1.7e +/- 308 (~15 digits) 8bytes and long double 10bytes you can refer let us c by yeshvant kanetkar
example-float a, b, c;
a = 2.854;
b = 7;c = 1.5e-7;
 
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…