int main()
{
float b=123.1265;
printf("%f\t",b);
return 0;
}
OUTPUT is 123.126503
now my question is from where this 03 is coming in the output.. I tried with random numbers but every time I got random output rather than the value I assigned..
int main()
{
float b=123.1265;
printf("%f\t",b);
return 0;
}
OUTPUT is 123.126503
now my question is from where this 03 is coming in the output.. I tried with random numbers but every time I got random output rather than the value I assigned..