Write a floating point literal corresponding to the value ze
Write a floating point literal corresponding to the value zero.
Solution
floating point literal corresponding to the value zero.
Ans)
float f=0.0f;
If we didnt specify \'f\' .float will be initialized with double.
so we have to give \'f\'.
