I am creating a DOUBLE variable that will always be in the format 0.xxx. While I want the three decimal digits to appear each time, I do not want to see the leading zero (eg: .275). I have found many ways to remove the leading zero in a STRING, but not using a DOUBLE variable.
To give more detail, I am dividing one int by another int to get the double. I am able to use printf/ .3f to get to the thousandths position, but %0.3f results in an error. I must be missing something simple, but have failed to find my error.