printf
formatted output conversion
You're viewing an older version of this page (#3276). View the current version.
NAME
printf, fprintf, sprintf, snprintf, asprintf, vprintf, vfprintf, vsprintf, vsnprintf, vasprintf
INTERFACE
#include <stdio.h> int printf ( const char * restrict format, ... ) int fprintf ( FILE * restrict stream, const char * restrict format, ... ) int sprintf ( char * restrict str, const char * restrict format, ... ) int snprintf ( char * restrict str, size_t size, const char * restrict format, ... ) int asprintf ( char **ret, const char *format, ... ) #include <stdarg.h> int vprintf ( const char * restrict format, va_list ap ) int vfprintf ( FILE * restrict stream, const char * restrict format, va_list ap ) int vsprintf ( char * restrict str, const char * restrict format, va_list ap ) int vsnprintf ( char * restrict str, size_t size, const char * restrict format, va_list ap ) int vasprintf ( char **ret, const char *format, va_list ap )
DESCRIPTION
The printf family of functions produces output according to a \c format as described below. The printf and vprintf functions write output to <span class="Dv">stdout</span>, the standard output stream; fprintf and vfprintf write output to the given output \c stream; sprintf , snprintf , vsprintf , and vsnprintf write to the character string \c str; and asprintf and vasprintf dynamically allocate a new string with malloc (3) .
Extended locale versions of these functions are documented in reference:printf_l (3) . See reference:xlocale (3) for more information.
These functions write the output under the control of a format string that specifies how subsequent arguments (or arguments accessed via the variable-length argument facilities of reference:stdarg (3) ) are converted for output.
These functions return the number of characters printed (not including the trailing '<span class="Qlq">\\0</span>' used to end output to strings) or a negative value if an output error occurs, except for snprintf and vsnprintf , which return the number of characters that would have been printed if the size were unlimited (again, not including the final '<span class="Qlq">\\0</span>').
The asprintf and vasprintf functions set *ret to be a pointer to a buffer sufficiently large to hold the formatted string. This pointer should be passed to reference:free (3) to release the allocated storage when it is no longer needed. If sufficient space cannot be allocated, asprintf and vasprintf will return -1 and set ret to be a <span class="Dv">NULL</span> pointer.
The snprintf and vsnprintf functions will write at most size-1 of the characters printed into the output string (the size'th character then gets the terminating '<span class="Qlq">\\0</span>'); if the return value is greater than or equal to the size argument, the string was too short and some of the printed characters were discarded. The output is always null-terminated.
The sprintf and vsprintf functions effectively assume an infinite size.
The format string is composed of zero or more directives: ordinary characters (not <span class="Cm">%</span>), which are copied unchanged to the output stream; and conversion specifications, each of which results in fetching zero or more subsequent arguments. Each conversion specification is introduced by the <span class="Cm">%</span> character. The arguments must correspond properly (after type promotion) with the conversion specifier. After the <span class="Cm">%</span>, the following appear in sequence:
- An optional field, consisting of a decimal digit string followed by a <span class="Cm">
</span>' instead of a digit string. In this case, an <span class="Vt">int</span> argument supplies the field width or precision. A negative field width is treated as a left adjustment flag followed by a positive field width; a negative precision is treated as though it were missing. If a single format directive mixes positional (<span class="Pq"><span class="Li">nn<div class="orangebox">[$]</div></span></span>) and non-positional arguments, the results are undefined. \n
\n The conversion specifiers and their meanings are: <table cellspacing="0" class="refpage" style="margin-left:25px"> <tr> <td valign="top" nowrap> <span class="Cm">diouxX</span> </td> <td valign="top"> The <span class="Vt">int</span> (or appropriate variant) argument is converted to signed decimal ( <span class="Cm">d</span> and <span class="Cm">i</span>), unsigned octal (<span class="Pq"><span class="Cm">o</span>,</span>) unsigned decimal (<span class="Pq"><span class="Cm">u</span>,</span>) or unsigned hexadecimal ( <span class="Cm">x</span> and <span class="Cm">X</span>) notation. The letters "<span class="Dq"><span class="Li">abcdef</span></span>" are used for <span class="Cm">x</span> conversions; the letters "<span class="Dq"><span class="Li">ABCDEF</span></span>" are used for <span class="Cm">X</span> conversions. The precision, if any, gives the minimum number of digits that must appear; if the converted value requires fewer digits, it is padded on the left with zeros. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">DOU</span> </td> <td valign="top"> The <span class="Vt">long int</span> argument is converted to signed decimal, unsigned octal, or unsigned decimal, as if the format had been <span class="Cm">ld</span>, <span class="Cm">lo</span>, or <span class="Cm">lu</span> respectively. These conversion characters are deprecated, and will eventually disappear. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">eE</span> </td> <td valign="top"> The <span class="Vt">double</span> argument is rounded and converted in the style[-]<span class="Ar">d</span><span class="Ar"><span class="Li">.</span><span class="Li"><span class="Ar">ddd</span><span class="Ar"><span class="Li">e</span><span class="Li"> ±</span><span class="Li"><span class="Ar">dd</span></span></span></span></span> where there is one digit before the decimal-point character and the number of digits after it is equal to the precision; if the precision is missing, it is taken as 6; if the precision is zero, no decimal-point character appears. An <span class="Cm">E</span> conversion uses the letter '<span class="Qlq">E</span>' (rather than '<span class="Qlq">e</span>') to introduce the exponent. The exponent always contains at least two digits; if the value is zero, the exponent is 00. \n \n For <span class="Cm">a</span>, <span class="Cm">A</span>, <span class="Cm">e</span>, <span class="Cm">E</span>, <span class="Cm">f</span>, <span class="Cm">F</span>, <span class="Cm">g</span>, and <span class="Cm">G</span> conversions, positive and negative infinity are represented as <span class="Li">inf</span> and <span class="Li">-inf</span> respectively when using the lowercase conversion character, and <span class="Li">INF</span> and <span class="Li">-INF</span> respectively when using the uppercase conversion character. Similarly, NaN is represented as <span class="Li">nan</span> when using the lowercase conversion, and <span class="Li">NAN</span> when using the uppercase conversion. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">fF</span> </td> <td valign="top"> The <span class="Vt">double</span> argument is rounded and converted to decimal notation in the style[-]<span class="Ar">ddd</span><span class="Ar"><span class="Li">.</span><span class="Li"><span class="Ar">ddd</span>,</span></span> where the number of digits after the decimal-point character is equal to the precision specification. If the precision is missing, it is taken as 6; if the precision is explicitly zero, no decimal-point character appears. If a decimal point appears, at least one digit appears before it. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">gG</span> </td> <td valign="top"> The <span class="Vt">double</span> argument is converted in style <span class="Cm">f</span> or <span class="Cm">e</span> (or <span class="Cm">F</span> or <span class="Cm">E</span> for <span class="Cm">G</span> conversions). The precision specifies the number of significant digits. If the precision is missing, 6 digits are given; if the precision is zero, it is treated as 1. Style <span class="Cm">e</span> is used if the exponent from its conversion is less than -4 or greater than or equal to the precision. Trailing zeros are removed from the fractional part of the result; a decimal point appears only if it is followed by at least one digit. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">aA</span> </td> <td valign="top"> The <span class="Vt">double</span> argument is rounded and converted to hexadecimal notation in the style[-]<span class="Li">0x</span><span class="Li"><span class="Ar">h</span><span class="Ar"><span class="Li">.</span><span class="Li"><span class="Ar">hhhp</span><span class="Ar">[</span><span class="Ar"> ±</span><span class="Ar">]</span><span class="Ar"><span class="Ar">d</span>,</span></span></span></span> where the number of digits after the hexadecimal-point character is equal to the precision specification. If the precision is missing, it is taken as enough to represent the floating-point number exactly, and no rounding occurs. If the precision is zero, no hexadecimal-point character appears. The <span class="Cm">p</span> is a literal character '<span class="Qlq">p</span>', and the exponent consists of a positive or negative sign followed by a decimal number representing an exponent of 2. The <span class="Cm">A</span> conversion uses the prefix "<span class="Dq"><span class="Li">0X</span></span>" (rather than "<span class="Dq"><span class="Li">0x</span>),</span>" the letters "<span class="Dq"><span class="Li">ABCDEF</span></span>" (rather than "<span class="Dq"><span class="Li">abcdef</span>)</span>" to represent the hex digits, and the letter '<span class="Qlq">P</span>' (rather than '<span class="Qlq">p</span>') to separate the mantissa and exponent. \n \n Note that there may be multiple valid ways to represent floating-point numbers in this hexadecimal format. For example, <span class="Li">0x3.24p+0</span>, <span class="Li">0x6.48p-1</span> and <span class="Li">0xc.9p-2</span> are all equivalent. The format chosen depends on the internal representation of the number, but the implementation guarantees that the length of the mantissa will be minimized. Zeroes are always represented with a mantissa of 0 (preceded by a '<span class="Qlq">-</span>' if appropriate) and an exponent of <span class="Li">+0</span>. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">C</span> </td> <td valign="top"> Treated as <span class="Cm">c</span> with the <span class="Cm">l</span> (ell) modifier. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">c</span> </td> <td valign="top"> The <span class="Vt">int</span> argument is converted to an <span class="Vt">unsigned char</span>, and the resulting character is written. \n \n If the <span class="Cm">l</span> (ell) modifier is used, the <span class="Vt">wint_t</span> argument shall be converted to a <span class="Vt">wchar_t</span>, and the (potentially multi-byte) sequence representing the single wide character is written, including any shift sequences. If a shift sequence is used, the shift state is also restored to the original state after the character. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">S</span> </td> <td valign="top"> Treated as <span class="Cm">s</span> with the <span class="Cm">l</span> (ell) modifier. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">s</span> </td> <td valign="top"> The <span class="Vt">char *</span> argument is expected to be a pointer to an array of character type (pointer to a string). Characters from the array are written up to (but not including) a terminating <span class="Dv">NUL</span> character; if a precision is specified, no more than the number specified are written. If a precision is given, no null character need be present; if the precision is not specified, or is greater than the size of the array, the array must contain a terminating <span class="Dv">NUL</span> character. \n \n If the <span class="Cm">l</span> (ell) modifier is used, the <span class="Vt">wchar_t *</span> argument is expected to be a pointer to an array of wide characters (pointer to a wide string). For each wide character in the string, the (potentially multi-byte) sequence representing the wide character is written, including any shift sequences. If any shift sequence is used, the shift state is also restored to the original state after the string. Wide characters from the array are written up to (but not including) a terminating wide <span class="Dv">NUL</span> character; if a precision is specified, no more than the number of bytes specified are written (including shift sequences). Partial characters are never written. If a precision is given, no null character need be present; if the precision is not specified, or is greater than the number of bytes required to render the multibyte representation of the string, the array must contain a terminating wide <span class="Dv">NUL</span> character. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">p</span> </td> <td valign="top"> The <span class="Vt">void *</span> pointer argument is printed in hexadecimal (as if by '<span class="Qlq">%#x</span>' or '<span class="Qlq">%#lx</span>'). </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">n</span> </td> <td valign="top"> The number of characters written so far is stored into the integer indicated by the <span class="Vt">int *</span> (or variant) pointer argument. No argument is converted. </td> </tr> <tr> <td valign="top" nowrap> <span class="Cm">%</span> </td> <td valign="top"> A '<span class="Qlq">%</span>' is written. No argument is converted. The complete conversion specification is '<span class="Qlq">%%</span>'. </td> </tr> </table> \n \n The decimal point character is defined in the program's locale (category <span class="Dv">LC_NUMERIC</span>). \n \n In no case does a non-existent or small field width cause truncation of a numeric field; if the result of a conversion is wider than the field width, the field is expanded to contain the conversion result.
EXAMPLES
To print a date and time in the form "<span class="Dq"><span class="Li">Sunday, July 3, 10:02</span>,</span>" where \c weekday and \c month are pointers to strings:
#include <stdio.h>
fprintf(stdout, "%s, %s %d, %.2d:%.2d\n",
weekday, month, day, hour, min);\n \n To print π to five decimal places:
#include <math.h>
#include <stdio.h>
fprintf(stdout, "pi = %.5f\n", 4 * atan(1.0));\n \n To allocate a 128 byte string and print into it:
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
char *newfmt(const char *fmt, ...)
{
char *p;
va_list ap;
if ((p = malloc(128)) == NULL)
return (NULL);
va_start(ap, fmt);
(void) vsnprintf(p, 128, fmt, ap);
va_end(ap);
return (p);
}
SECURITY CONSIDERATIONS
The sprintf and vsprintf functions are easily misused in a manner which enables malicious users to arbitrarily change a running program's functionality through a buffer overflow attack. Because sprintf and vsprintf assume an infinitely long string, callers must be careful not to overflow the actual space; this is often hard to assure. For safety, programmers should use the snprintf interface instead. For example:
void
foo(const char *arbitrary_string, const char *and_another)
{
char onstack[8];
#ifdef BAD
/*
* This first sprintf is bad behavior. Do not use sprintf!
*/
sprintf(onstack, "%s, %s", arbitrary_string, and_another);
#else
/*
* The following two lines demonstrate better use of
* snprintf().
*/
snprintf(onstack, sizeof(onstack), "%s, %s", arbitrary_string,
and_another);
#endif
}\n \n The printf and sprintf family of functions are also easily misused in a manner allowing malicious users to arbitrarily change a running program's functionality by either causing the program to print potentially sensitive data "<span class="Dq">left on the stack</span>", or causing it to generate a memory fault or bus error by dereferencing an invalid pointer. \n \n <span class="Cm">%n</span> can be used to write arbitrary data to potentially carefully-selected addresses. Programmers are therefore strongly advised to never pass untrusted strings as the \c format argument, as an attacker can put format specifiers in the string to mangle your stack, leading to a possible security hole. This holds true even if the string was built using a function like snprintf , as the resulting string may still contain user-supplied conversion specifiers for later interpolation by printf . \n \n Always use the proper secure idiom: \n \n \n
snprintf(buffer, sizeof(buffer), "%s ", string);\n
ERRORS
In addition to the errors documented for the reference:write (2) system call, the printf family of functions may fail if: <table cellspacing="0" class="refpage" style="margin-left:25px"> <tr> <td valign="top" nowrap> [<span class="Bq"><span class="Er">EILSEQ</span></span>] </td> <td valign="top"> An invalid wide character code was encountered. </td> </tr> <tr> <td valign="top" nowrap> [<span class="Bq"><span class="Er">ENOMEM</span></span>] </td> <td valign="top"> Insufficient storage space is available. </td> </tr> </table>
SEE ALSO
printf (1) , reference:fmtcheck (3) , scanf (3) , reference:setlocale (3) , reference:wprintf (3) , reference:printf_l (3)
STANDARDS
Subject to the caveats noted in the <span class="Sx">BUGS</span> section below, the fprintf , printf , sprintf , vprintf , vfprintf , and vsprintf functions conform to and With the same reservation, the snprintf and vsnprintf functions conform to
HISTORY
The functions asprintf and vasprintf first appeared in the <span class="Tn">GNU</span> <span class="Tn">C</span> library. These were implemented by <span class="An">Peter</span> <span class="An">Wemm</span> <span class="An"><<span class="Aq">peter@FreeBSD.org</span>></span> in FreeBSD 2.2 but were later replaced with a different implementation from <span class="An">Todd</span> <span class="An">C.</span> <span class="An">Miller</span> <span class="An"><<span class="Aq">Todd.Miller@courtesan.com</span>></span> for OpenBSD 2.3
BUGS
The conversion formats <span class="Cm">%D</span>, <span class="Cm">%O</span>, and <span class="Cm">%U</span> are not standard and are provided only for backward compatibility. The effect of padding the <span class="Cm">%p</span> format with zeros (either by the <span class="Cm">0</span> flag or by specifying a precision), and the benign effect (i.e., none) of the <span class="Cm">#</span> flag on <span class="Cm">%n</span> and <span class="Cm">%p</span> conversions, as well as other nonsensical combinations such as <span class="Cm">%Ld</span>, are not standard; such combinations should be avoided. \n \n The printf family of functions do not correctly handle multibyte characters in the \c format argument.