C language division
# include & ltstdio.h & gt

void main()

{

printf("%f\n ",4.0/ 16);

}

If so, the result is 0.250000.

Because float is accurate to 6 decimal places, it is 0.25000, and there is no limit.

If so

# include & ltstdio.h & gt

void main()

{

printf("%d\n ",4.0/ 16);

}

Then the result is 0. The factor 4 divided by 16 is equal to 0.25 and less than 1. It becomes 0. (C language here is not rounded, so it is all rounded! )

I don't know if it is the answer you want.