Correct Answer : B
The value of PI is 3.14159265
which is generally taken as 3.14
for calculations. So we need a floating point type to store it that is may be float
or double
. But to use minimal space we use float
to store value of PI. Range of float
is 1.40e-45
to 3.40e+38
.