show/hide this revision's text 3 added 466 characters in body

This can't be done with the normal printf format specifiers. The closet you could get would be:

printf("%.6g", 359.013); // 359.013
printf("%.6g", 359.01);  // 359.01

but the ".6" is the total numeric width so

printf("%.6g", 3.01357); // 3.01357

breaks it.

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.

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).

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 this for more or less decimals.
    while ((count count >= 0) && {    // Maximum decimals allowed.
         count--;
         if (*p != '\0')) {
         count--\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';
    }
}
show/hide this revision's text 2 added 413 characters in body

This can't be done with the normal printf format specifiers. The closet you could get would be:

printf("%.6g", 359.013); // 359.013
printf("%.6g", 359.01);  // 359.01

but the ".6" is the total numeric width so

printf("%.6g", 3.01357); // 3.01357

breaks it.

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.

Assuming your number is in the variable num, the following code will remove all but the first 3 decimals.

char str[50];
char *p;
int count;
:    :
sprintf (str,"%.20g",num);
p = strchr (str,'.');
if (p != NULL) {
    count = 3;  // Adjust this for more or less decimals.
    while ((count >= 0) && (*p != '\0')) {
         count--;
         p++;
    }
    *p = '\0';
}
show/hide this revision's text 1

This can't be done with the normal printf format specifiers. The closet you could get would be:

printf("%.6g", 359.013); // 359.013
printf("%.6g", 359.01);  // 359.01

but the ".6" is the total numeric width so

printf("%.6g", 3.01357); // 3.01357

breaks it.

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.