Movatterモバイル変換


[0]ホーム

URL:


cplusplus.com

Reference

function
<cstdio>

printf

int printf ( const char * format, ... );
Print formatted data to stdout
Writes the C string pointed byformat to the standard output (stdout). Ifformat includesformat specifiers (subsequences beginning with%), the additional arguments followingformat are formatted and inserted in the resulting string replacing their respective specifiers.

Parameters

format
C string that contains the text to be written tostdout.
It can optionally contain embeddedformat specifiers that are replaced by the values specified in subsequent additional arguments and formatted as requested.

Aformat specifier follows this prototype:[see compatibility note below]
%[flags][width][.precision][length]specifier

Where thespecifier character at the end is the most significant component, since it defines the type and the interpretation of its corresponding argument:
specifierOutputExample
doriSigned decimal integer392
uUnsigned decimal integer7235
oUnsigned octal610
xUnsigned hexadecimal integer7fa
XUnsigned hexadecimal integer (uppercase)7FA
fDecimal floating point, lowercase392.65
FDecimal floating point, uppercase392.65
eScientific notation (mantissa/exponent), lowercase3.9265e+2
EScientific notation (mantissa/exponent), uppercase3.9265E+2
gUse the shortest representation:%e or%f392.65
GUse the shortest representation:%E or%F392.65
aHexadecimal floating point, lowercase-0xc.90fep-2
AHexadecimal floating point, uppercase-0XC.90FEP-2
cCharactera
sString of characterssample
pPointer addressb8000000
nNothing printed.
The corresponding argument must be a pointer to asigned int.
The number of characters written so far is stored in the pointed location.
%A% followed by another% character will write a single% to the stream.%

Theformat specifier can also contain sub-specifiers:flags,width,.precision andmodifiers (in that order), which are optional and follow these specifications:

flagsdescription
-Left-justify within the given field width; Right justification is the default (seewidth sub-specifier).
+Forces to preceed the result with a plus or minus sign (+ or-) even for positive numbers. By default, only negative numbers are preceded with a- sign.
(space)If no sign is going to be written, a blank space is inserted before the value.
#Used witho,x orX specifiers the value is preceeded with0,0x or0X respectively for values different than zero.
Used witha,A,e,E,f,F,g orG it forces the written output to contain a decimal point even if no more digits follow. By default, if no digits follow, no decimal point is written.
0Left-pads the number with zeroes (0) instead of spaces when padding is specified (seewidth sub-specifier).

widthdescription
(number)Minimum number of characters to be printed. If the value to be printed is shorter than this number, the result is padded with blank spaces. The value is not truncated even if the result is larger.
*Thewidth is not specified in theformat string, but as an additional integer value argument preceding the argument that has to be formatted.

.precisiondescription
.numberFor integer specifiers (d,i,o,u,x,X):precision specifies the minimum number of digits to be written. If the value to be written is shorter than this number, the result is padded with leading zeros. The value is not truncated even if the result is longer. Aprecision of0 means that no character is written for the value0.
Fora,A,e,E,f andF specifiers: this is the number of digits to be printedafter the decimal point (by default, this is 6).
Forg andG specifiers: This is the maximum number of significant digits to be printed.
Fors: this is the maximum number of characters to be printed. By default all characters are printed until the ending null character is encountered.
If the period is specified without an explicit value forprecision,0 is assumed.
.*Theprecision is not specified in theformat string, but as an additional integer value argument preceding the argument that has to be formatted.

Thelength sub-specifier modifies the length of the data type. This is a chart showing the types used to interpret the corresponding arguments with and withoutlength specifier (if a different type is used, the proper type promotion or conversion is performed, if allowed):
specifiers
lengthd iu o x Xf F e E g G a Acspn
(none)intunsigned intdoubleintchar*void*int*
hhsigned charunsigned charsigned char*
hshort intunsigned short intshort int*
llong intunsigned long intwint_twchar_t*long int*
lllong long intunsigned long long intlong long int*
jintmax_tuintmax_tintmax_t*
zsize_tsize_tsize_t*
tptrdiff_tptrdiff_tptrdiff_t*
Llong double
Note regarding thec specifier: it takes anint (orwint_t) as argument, but performs the proper conversion to achar value (or awchar_t) before formatting it for output.

Note: Yellow rows indicate specifiers and sub-specifiers introduced by C99. See<cinttypes> for the specifiers for extended types.
...(additional arguments)
Depending on theformat string, the function may expect a sequence of additional arguments, each containing a value to be used to replace aformat specifier in theformat string (or a pointer to a storage location, forn).
There should be at least as many of these arguments as the number of values specified in theformat specifiers. Additional arguments are ignored by the function.

Return Value

On success, the total number of characters written is returned.

If a writing error occurs, theerror indicator (ferror) is set and a negative number is returned.

If a multibyte character encoding error occurs while writing wide characters,errno is set toEILSEQ and a negative number is returned.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* printf example */#include <stdio.h>int main(){   printf ("Characters: %c %c \n",'a', 65);   printf ("Decimals: %d %ld\n", 1977, 650000L);   printf ("Preceding with blanks: %10d \n", 1977);   printf ("Preceding with zeros: %010d \n", 1977);   printf ("Some different radices: %d %x %o %#x %#o \n", 100, 100, 100, 100, 100);   printf ("floats: %4.2f %+.0e %E \n", 3.1416, 3.1416, 3.1416);   printf ("Width trick: %*d \n", 5, 10);   printf ("%s \n","A string");return 0;}

Output:
Characters: a ADecimals: 1977 650000Preceding with blanks:       1977Preceding with zeros: 0000001977Some different radices: 100 64 144 0x64 0144floats: 3.14 +3e+000 3.141600E+000Width trick:    10A string


Compatibility

Particular library implementations may support additionalspecifiers andsub-specifiers.
Those listed here are supported by the latest C and C++ standards (both published in 2011), but those in yellow were introduced in C99 (only required for C++ implementations since C++11), and may not be supported by libraries that comply with older standards.

See also

puts
Write string to stdout(function)
scanf
Read formatted data from stdin(function)
fprintf
Write formatted data to stream(function)
fwrite
Write block of data to stream(function)
Home page |Privacy policy
© cplusplus.com, 2000-2025 - All rights reserved -v3.3.4s
Spotted an error? contact us

[8]ページ先頭

©2009-2025 Movatter.jp