Avoid trailing zeroes in printf() - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T01:08:11Zhttp://stackoverflow.com/feeds/question/277772http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/277772/avoid-trailing-zeroes-in-printf5Avoid trailing zeroes in printf()Gorpik2008-11-10T12:42:23Z2008-11-10T14:49:43Z
<p>I keep stumbling on the format specifiers for the printf() family of functions. What I want is to be able to print a double (or float) with a maximum given number of digits after the decimal point. If I use:</p>
<pre><code>printf("%1.3f", 359.01335);
printf("%1.3f", 359.00999);
</code></pre>
<p>I get</p>
<pre><code>359.013
359.010
</code></pre>
<p>Instead of the desired</p>
<pre><code>359.013
359.01
</code></pre>
<p>Can anybody help me?</p>
http://stackoverflow.com/questions/277772/avoid-trailing-zeroes-in-printf/277779#2777792Answer by Tomalak for Avoid trailing zeroes in printf()Tomalak2008-11-10T12:45:31Z2008-11-10T13:09:19Z<p>To get rid of the trailing zeros, you should use the "%g" format:</p>
<pre><code>float num = 1.33;
printf("%g", num); //output: 1.33
</code></pre>
<p>After the question was clarified a bit, that suppressing zeros is not the only thing that was asked, but limiting the output to three decimal places was required as well. I think that can't be done with sprintf format strings alone. As <a href="http://stackoverflow.com/questions/277772/#277810">Pax Diablo</a> pointed out, string manipulation would be required.</p>
http://stackoverflow.com/questions/277772/avoid-trailing-zeroes-in-printf/277810#2778106Answer by paxdiablo for Avoid trailing zeroes in printf()paxdiablo2008-11-10T13:01:01Z2008-11-10T13:21:25Z<p>This can't be done with the normal printf format specifiers. The closet you could get would be:</p>
<pre><code>printf("%.6g", 359.013); // 359.013
printf("%.6g", 359.01); // 359.01
</code></pre>
<p>but the ".6" is the total numeric width so</p>
<pre><code>printf("%.6g", 3.01357); // 3.01357
</code></pre>
<p>breaks it.</p>
<p>What you probably need to do is to sprintf("%.20g") the number to a string buffer then manipulate the string to only have N characters past the decimal point.</p>
<p>Assuming your number is in the variable num, the following code will remove all but the first 3 decimals, then strip off the trailing zeros (and decimal point if they were all zeros).</p>
<pre><code>char str[50];
char *p;
int count;
: :
sprintf (str,"%.20g",num); // Make the number.
p = strchr (str,'.'); // Find decimal point.
if (p != NULL) {
count = 3; // Adjust for more or less decimals.
while (count >= 0) { // Maximum decimals allowed.
count--;
if (*p != '\0') // If there's less than desired.
break;
p++; // Next character.
}
*p-- = '\0'; // Truncate string.
while (*p == '0') { // Remove trailing zeros.
*p-- = '\0';
}
if (*p == '.') { // If all decimals were zeros, remove ".".
*p = '\0';
}
}
</code></pre>
http://stackoverflow.com/questions/277772/avoid-trailing-zeroes-in-printf/278033#2780330Answer by for Avoid trailing zeroes in printf()2008-11-10T14:49:43Z2008-11-10T14:49:43Z<p>Here is my first try at an answer:</p>
<pre>
void
xprintfloat(char *format, float f)
{
char s[50];
char *p;
sprintf(s, format, f);
for(p=s; *p; ++p)
if('.' == *p) {
while(*++p);
while('0'==*--p) *p = '\0';
}
printf("%s", s);
}
</pre>
<p>Known bugs: Possible buffer overflow depending on format. If "." is present for other reason than %f wrong result might happen.</p>