show/hide this revision's text 2 added 336 characters in body

To get rid of the trailing zeros, you should use the "%g" format:

float num = 1.33;
printf("%g", num); //output: 1.33

This

After the question was in clarified a bit, that suppressing zeros is not the first hit on Googleonly thing that was asked, BTWbut limiting the output to three decimal places was required as well. I think that can't be done with sprintf format strings alone. As Pax Diablo pointed out, string manipulation would be required.

show/hide this revision's text 1

To get rid of the trailing zeros, you should use the "%g" format:

float num = 1.33;
printf("%g", num); //output: 1.33

This was in the first hit on Google, BTW.