Question #45585

main()
{
float a=0.7;
if(0.7>a)
{
cout<<("true");
}
else
{
cout<<("false");
}
}
Question : why the output of this program is true ?
nd when i take the value of a is 0.6 then it is false ??

Expert's answer

Dear visitor,

It happens because you use the float data type. it is known for its imprecision. If you want to have the correct work in such cases, it is better to use double. They are called double precision type for a reason.


LATEST TUTORIALS
APPROVED BY CLIENTS