Number Format: Precision Field

image\regex2_shg.gif

Sample (Precision is in red): %1<% 12.3f(E1-10)>

 

The third optional field of the format specification is precision. It specifies a nonnegative decimal integer, always preceded by a period (.), which specifies the number of characters to be printed, the number of decimal places, or the number of significant digits (see second table below). Unlike the width specification, precision can cause either truncation of the output value or rounding of a floating-point value. If precision is specified as 0 and the value to be converted is 0, the result is no characters output, as shown below:

printf( "%.0d", 0 ); /* No characters output */

If the precision specification is an asterisk (*), an int argument from the argument list supplies the value. The precision argument must precede the value being formatted in the argument list.

The type field determines the interpretation of precision and the default when precision is omitted, as shown in the following table.

Type Field

Meaning

Default

c, C

The precision has no effect.

Character is printed.

d, i, u, o, x, X

The precision specifies the minimum number of digits to be printed. If the number of digits in the argument is less than precision, the output value is padded on the left with zeros. The value is not truncated when the number of digits exceeds precision.

Default precision is 1.

e, E

The precision specifies the number of digits to be printed after the decimal point. The last printed digit is rounded.

Default precision is 6; if precision is 0 or the period (.) appears without a number following it, no decimal point is printed.

f

The precision value specifies the number of digits after the decimal point. If a decimal point appears, at least one digit appears before it. The value is rounded to the appropriate number of digits.

Default precision is 6; if precision is 0, or if the period (.) appears without a number following it, no decimal point is printed.

g, G

The precision specifies the maximum number of significant digits printed.

Six significant digits are printed, with any trailing zeros truncated.

s, S

The precision specifies the maximum number of characters to be printed. Characters in excess of precision are not printed.

Characters are printed until a null character is encountered.

If the argument corresponding to a floating-point specifier is infinite, indefinite, or NAN, printf gives the following output.

Value

Output

+ infinity

1.#INFrandom-digits

û infinityû1.

#INFrandom-digits

Indefinite (same as quiet NaN)

digit.#INDrandom-digits

NAN

digit.#NANrandom-digits