Home The GNU C Library www.imodulo.com · 2003-04-05
Imodulo

Output Conversion Syntax

[ Up: Formatted Output ]
[ Previous: Formatted Output Basics ][ Next: Table of Output Conversions ]

This section provides details about the precise syntax of conversion specifications that can appear in a printf template string.

Characters in the template string that are not part of a conversion specification are printed as-is to the output stream. Multibyte character sequences (Character Set Handling) are permitted in a template string.

The conversion specifications in a printf template string have the general form:

% [param-no$]flagswidth[ . precision]typeconversion

or

% [param-no$]flagswidth . *[param-no$]typeconversion

For example, in the conversion specifier %-10.8ld, the - is a flag, 10 specifies the field width, the precision is 8, the letter l is a type modifier, and d specifies the conversion style. (This particular type specifier says to print a long int argument in decimal notation, with a minimum of 8 digits left-justified in a field at least 10 characters wide.)

In more detail, output conversion specifications consist of an initial % character followed in sequence by:

The exact options that are permitted and how they are interpreted vary between the different conversion specifiers. See the descriptions of the individual conversions for information about the particular options that they use.

With the -Wformat option, the GNU C compiler checks calls to printf and related functions. It examines the format string and verifies that the correct number and types of arguments are supplied. There is also a GNU C syntax to tell the compiler that a function you write uses a printf-style format string. Declaring Attributes of Functions, for more information.