I was executing following C code-
float a=3.25678932;
printf("%0.10f\n",a);
The above printf() statement giving following output:
3.2567892075
I am not able to understand how other four digits('2075') are coming after first six digits('256789') after decimal.