I have a 15-digit floating-point number and I need to truncate the trailing zeros after the decimal point. Is there a format specifier for that?
|
feedback
|
|
| |||||||||||
feedback
|
|
Unfortunately in C there is no format specifier that seems to meet all the requirements you have. What you're going to have to do is print the fixed format number to a buffer and then manually remove the zeroes with string editing (which can STILL be tricky if you have rounding errors and numbers like | |||
|
feedback
|
|
Is this what you want:
Output:
Note that trailing zeros after the decimal point are truncated! Online Demo : http://www.ideone.com/vRFlQ | |||||||
feedback
|
|
You could print the format specifier as a string, filling in the appropriate amount of digits if you can determine how many:
or, just checking trailing 0 characters:
| |||
|
feedback
|
longorlong longetc.? – Nim Mar 24 '11 at 12:41