Advertisements
Advertisements
Question
In what way float initialisation is different from double type initialisation?
Answer in Brief
Solution
- A float type variable is initialised with a fractional value as 0.0L whereas, a double type variable is initialised with a fractional value as 0.0D. The difference between initialisations is the suffix, i.e., L and D respectively.
- For example,
float f = 0.0F;
double d = 0.0D;
shaalaa.com
Is there an error in this question or solution?