I\'m curious:
If you do a printf(\"%f\", number); what is the precision of the statement? I.e. How many decimal places will show up? Is this compiler de
printf(\"%f\", number);
The default precision for %f is 6 digits (see ISO C99 specification, 7.19.6.1/7).
%f