std::printf, std::fprintf, std::sprintf, std::snprintf – cppreference.com
Ausgabedatenstrom zu schreiben
Original:
output file stream to write to
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Zeiger auf eine Zeichenkette zu schreiben
Original:
pointer to a character string to write to
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
bis buf_size - ein Zeichen kann geschrieben werden, plus die Null-Terminator
Original:
up to buf_size - 1 characters may be written, plus the null terminator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Zeiger auf einen null-terminierten Multibyte-String angeben, wie die Daten zu interpretieren.
Der Format-String besteht aus Leerzeichen, Nicht-Whitespace-Zeichen (außer %) und Conversion-Spezifikationen. Jede Konvertierung Spezifikation hat das folgende Format:
Original:
The format string consists of whitespace characters, non-whitespace characters (except %) and conversion specifications. Each conversion specification has the following format:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
einleitenden
%CharakterOriginal:
introductory
%characterThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional) ein oder mehrere Flags, die das Verhalten der Umwandlung zu ändern:
Original:
(optional) one or more flags that modify the behavior of the conversion:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
-: Das Ergebnis der Umwandlung wird innerhalb des Feldes linksbündig (standardmäßig ist es rechtsbündig)Original:
-: the result of the conversion is left-justified within the field (by default it is right-justified)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.+: das Vorzeichen des unterzeichneten Konvertierungen wird immer dem Ergebnis der Konvertierung vorangestellt (standardmäßig das Ergebnis durch nur minus vorangestellt, wenn es negativ ist)Original:
+: the sign of signed conversions is always prepended to the result of the conversion (by default the result is preceded by minus only when it is negative)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.Raum: wenn das Ergebnis einer vorzeichenbehafteten Umwandlung nicht mit einem Schild Zeichen beginnen, oder leer ist, Raum zu dem Ergebnis, vorangestellt. Es wird ignoriert, wenn
+Flag vorhanden ist .Original:
space: if the result of a signed conversion does not start with a sign character, or is empty, space is prepended to the result. It is ignored if
+flag is present.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.#: alternative Form der Konvertierung durchgeführt. Siehe Tabelle unten für genauen Auswirkungen .Original:
#: alternative form of the conversion is performed. See the table below for exact effects.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.0: für Integer-und Gleitkomma-Zahl Konvertierungen, führende Nullen werden verwendet, um pad das Feld statt Raum Zeichen. Für Fließkommazahlen wird ignoriert, wenn die Präzision explizit angegeben wird. Für andere Umwandlungen mit dieser Flagge Ergebnisse in undefiniertem Verhalten. Es wird ignoriert, wenn-Flag vorhanden ist .Original:
0: for integer and floating point number conversions, leading zeros are used to pad the field instead of space characters. For floating point numbers it is ignored if the precision is explicitly specified. For other conversions using this flag results in undefined behavior. It is ignored if-flag is present.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional) ganzzahligen Wert oder
*die minimale Feldbreite angibt. Das Ergebnis wird mit Raum Zeichen aufgefüllt (Standard), falls erforderlich, auf der linken Seite, wenn rechtsbündig oder auf der rechten Seite, wenn linksbündig. In dem Fall, wenn*verwendet wird, wird die Breite von einer zusätzlichen Argument des Typsintangegeben. Wenn der Wert des Arguments negativ ist, ergibt sich mit dem-Flagge angegebenen und positiven Feldbreite .Original:
(optional) integer value or
*that specifies minimum field width. The result is padded with space characters (by default), if required, on the left when right-justified, or on the right if left-justified. In the case when*is used, the width is specified by an additional argument of typeint. If the value of the argument is negative, it results with the-flag specified and positive field width.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional)
.durch ganze Zahl oder*die Präzision der Umwandlung legt gefolgt. In dem Fall, wenn*verwendet wird, wird die Präzision' durch einen zusätzlichen Argument des Typsintangegeben. Wenn der Wert dieses Argument negativ ist, wird es ignoriert. Siehe Tabelle unten für genaue Auswirkungen der Präzision .Original:
(optional)
.followed by integer number or*that specifies precision of the conversion. In the case when*is used, the precision is specified by an additional argument of typeint. If the value of this argument is negative, it is ignored. See the table below for exact effects of precision.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional) Länge Modifizierer, die die Größe des Arguments angibt
Original:
(optional) length modifier that specifies the size of the argument
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Umwandlung Formatbezeichner
Original:
conversion format specifier
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Die folgenden Formatangaben stehen zur Verfügung:
Original:
The following format specifiers are available:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
| Conversion specifier |
Explanation | Argument type | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| length modifier | hh
|
h
|
(none) | l
|
ll
|
j
|
z
|
t
|
L
| |
%
|
writes literal %. The full conversion specification must be %%.
|
N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A |
c
|
writes a single character | N/A | N/A | char
|
wchar_t
|
N/A | N/A | N/A | N/A | N/A |
s
|
writes a character string | N/A | N/A | char*
|
wchar_t*
|
N/A | N/A | N/A | N/A | N/A |
di
|
Precision gibt die minimale Anzahl von Stellen zu erscheinen. Die Standard-Genauigkeit Original: Precision specifies the minimum number of digits to appear. The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. |
|
|
|
|
|
|
|
|
N/A |
o
|
Precision gibt die minimale Anzahl von Stellen zu erscheinen. Die Standard-Genauigkeit Original: Precision specifies the minimum number of digits to appear. The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. In der alternativen Implementierung' Präzision erhöht wird, wenn erforderlich, einer führenden Null schreiben . Original: In the alternative implementation precision is increased if necessary, to write one leading zero. The text has been machine-translated via Google Translate. In diesem Fall, wenn sowohl der konvertierte Wert und die Präzision Original: In that case if both the converted value and the precision are The text has been machine-translated via Google Translate. |
N/A | ||||||||
xX
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Precision gibt die minimale Anzahl von Stellen zu erscheinen. Die Standard-Genauigkeit Original: Precision specifies the minimum number of digits to appear. The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. In der alternative Implementierung Original: In the alternative implementation The text has been machine-translated via Google Translate. |
N/A | ||||||||
u
|
Precision gibt die minimale Anzahl von Stellen zu erscheinen . Original: Precision specifies the minimum number of digits to appear. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit Original: The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. |
|
|
|
|
|
|
N/A | ||
fF
|
Precision gibt die minimale Anzahl der Stellen nach dem Komma Zeichen angezeigt werden . Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit Original: The default precision is The text has been machine-translated via Google Translate. In der alternative Implementierung Dezimalzeichen geschrieben, auch wenn ihm keine Ziffern folgen . Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A |
|
|
N/A | N/A | N/A | N/A |
|
e E
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Der Exponent enthält mindestens zwei Ziffern, mehr Stellen verwendet nur wenn notwendig sind . Original: The exponent contains at least two digits, more digits are used only if necessary. The text has been machine-translated via Google Translate. Wenn der Wert Original: If the value is The text has been machine-translated via Google Translate. Precision gibt die minimale Anzahl der Stellen nach dem Komma Zeichen angezeigt werden . Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit Original: The default precision is The text has been machine-translated via Google Translate. In der alternative Implementierung Dezimalzeichen geschrieben, auch wenn ihm keine Ziffern folgen . Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A | N/A | N/A | N/A | N/A | |||
a A
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Die erste Hexadezimalziffer ist Original: The first hexadecimal digit is The text has been machine-translated via Google Translate. Wenn der Wert Original: If the value is The text has been machine-translated via Google Translate. Precision gibt die minimale Anzahl der Stellen nach dem Komma Zeichen angezeigt werden . Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit ist ausreichend für die exakte Darstellung des Werts . Original: The default precision is sufficient for exact representation of the value. The text has been machine-translated via Google Translate. In der alternative Implementierung Dezimalzeichen geschrieben, auch wenn ihm keine Ziffern folgen . Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A | N/A | N/A | N/A | N/A | |||
g G
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Lassen Original: Let The text has been machine-translated via Google Translate.
Sofern alternative Darstellung wird gebeten die Nullen entfernt werden, auch das Dezimalzeichen wird entfernt, wenn keine Nachkommastellen gelassen wird . Original: Unless alternative representation is requested the trailing zeros are removed, also the decimal point character is removed if no fractional part is left. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A | N/A | N/A | N/A | N/A | |||
n
|
Das Ergebnis ist' geschrieben zu dem Wert, auf den durch das Argument . Original: The result is written to the value pointed to by the argument. The text has been machine-translated via Google Translate. Die vollständige Spezifikation muss Original: The complete specification must be The text has been machine-translated via Google Translate. |
N/A | N/A | int*
|
N/A | N/A | N/A | N/A | N/A | N/A |
p
|
writes an implementation defined character sequence defining a pointer. | N/A | N/A | void*
|
N/A | N/A | N/A | N/A | N/A | N/A |
Die Gleitkomma-Konvertierung Funktionen wandeln unendlich bis Original: The floating point conversion functions convert infinity to The text has been machine-translated via Google Translate. Not-a-Nummer wird an Original: Not-a-number is converted to The text has been machine-translated via Google Translate. Die Umsätze Original: The conversions The text has been machine-translated via Google Translate. | ||||||||||
Original:
pointer to a null-terminated multibyte string specifying how to interpret the data.
Der Format-String besteht aus Leerzeichen, Nicht-Whitespace-Zeichen (außer %) und Conversion-Spezifikationen. Jede Konvertierung Spezifikation hat das folgende Format:
Original:
The format string consists of whitespace characters, non-whitespace characters (except %) and conversion specifications. Each conversion specification has the following format:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
einleitenden
%CharakterOriginal:
introductory
%characterThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional) ein oder mehrere Flags, die das Verhalten der Umwandlung zu ändern:
Original:
(optional) one or more flags that modify the behavior of the conversion:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
-: Das Ergebnis der Umwandlung wird innerhalb des Feldes linksbündig (standardmäßig ist es rechtsbündig)Original:
-: the result of the conversion is left-justified within the field (by default it is right-justified)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.+: das Vorzeichen des unterzeichneten Konvertierungen wird immer dem Ergebnis der Konvertierung vorangestellt (standardmäßig das Ergebnis durch nur minus vorangestellt, wenn es negativ ist)Original:
+: the sign of signed conversions is always prepended to the result of the conversion (by default the result is preceded by minus only when it is negative)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.Raum: wenn das Ergebnis einer vorzeichenbehafteten Umwandlung nicht mit einem Schild Zeichen beginnen, oder leer ist, Raum zu dem Ergebnis, vorangestellt. Es wird ignoriert, wenn
+Flag vorhanden ist .Original:
space: if the result of a signed conversion does not start with a sign character, or is empty, space is prepended to the result. It is ignored if
+flag is present.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.#: alternative Form der Konvertierung durchgeführt. Siehe Tabelle unten für genauen Auswirkungen .Original:
#: alternative form of the conversion is performed. See the table below for exact effects.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.0: für Integer-und Gleitkomma-Zahl Konvertierungen, führende Nullen werden verwendet, um pad das Feld statt Raum Zeichen. Für Fließkommazahlen wird ignoriert, wenn die Präzision explizit angegeben wird. Für andere Umwandlungen mit dieser Flagge Ergebnisse in undefiniertem Verhalten. Es wird ignoriert, wenn-Flag vorhanden ist .Original:
0: for integer and floating point number conversions, leading zeros are used to pad the field instead of space characters. For floating point numbers it is ignored if the precision is explicitly specified. For other conversions using this flag results in undefined behavior. It is ignored if-flag is present.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional) ganzzahligen Wert oder
*die minimale Feldbreite angibt. Das Ergebnis wird mit Raum Zeichen aufgefüllt (Standard), falls erforderlich, auf der linken Seite, wenn rechtsbündig oder auf der rechten Seite, wenn linksbündig. In dem Fall, wenn*verwendet wird, wird die Breite von einer zusätzlichen Argument des Typsintangegeben. Wenn der Wert des Arguments negativ ist, ergibt sich mit dem-Flagge angegebenen und positiven Feldbreite .Original:
(optional) integer value or
*that specifies minimum field width. The result is padded with space characters (by default), if required, on the left when right-justified, or on the right if left-justified. In the case when*is used, the width is specified by an additional argument of typeint. If the value of the argument is negative, it results with the-flag specified and positive field width.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional)
.durch ganze Zahl oder*die Präzision der Umwandlung legt gefolgt. In dem Fall, wenn*verwendet wird, wird die Präzision' durch einen zusätzlichen Argument des Typsintangegeben. Wenn der Wert dieses Argument negativ ist, wird es ignoriert. Siehe Tabelle unten für genaue Auswirkungen der Präzision .Original:
(optional)
.followed by integer number or*that specifies precision of the conversion. In the case when*is used, the precision is specified by an additional argument of typeint. If the value of this argument is negative, it is ignored. See the table below for exact effects of precision.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(optional) Länge Modifizierer, die die Größe des Arguments angibt
Original:
(optional) length modifier that specifies the size of the argument
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Umwandlung Formatbezeichner
Original:
conversion format specifier
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Die folgenden Formatangaben stehen zur Verfügung:
Original:
The following format specifiers are available:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
| Conversion specifier |
Explanation | Argument type | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| length modifier | hh
|
h
|
(none) | l
|
ll
|
j
|
z
|
t
|
L
| |
%
|
writes literal %. The full conversion specification must be %%.
|
N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A |
c
|
writes a single character | N/A | N/A | char
|
wchar_t
|
N/A | N/A | N/A | N/A | N/A |
s
|
writes a character string | N/A | N/A | char*
|
wchar_t*
|
N/A | N/A | N/A | N/A | N/A |
di
|
Precision gibt die minimale Anzahl von Stellen zu erscheinen. Die Standard-Genauigkeit Original: Precision specifies the minimum number of digits to appear. The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. |
|
|
|
|
|
|
|
|
N/A |
o
|
Precision gibt die minimale Anzahl von Stellen zu erscheinen. Die Standard-Genauigkeit Original: Precision specifies the minimum number of digits to appear. The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. In der alternativen Implementierung' Präzision erhöht wird, wenn erforderlich, einer führenden Null schreiben . Original: In the alternative implementation precision is increased if necessary, to write one leading zero. The text has been machine-translated via Google Translate. In diesem Fall, wenn sowohl der konvertierte Wert und die Präzision Original: In that case if both the converted value and the precision are The text has been machine-translated via Google Translate. |
N/A | ||||||||
xX
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Precision gibt die minimale Anzahl von Stellen zu erscheinen. Die Standard-Genauigkeit Original: Precision specifies the minimum number of digits to appear. The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. In der alternative Implementierung Original: In the alternative implementation The text has been machine-translated via Google Translate. |
N/A | ||||||||
u
|
Precision gibt die minimale Anzahl von Stellen zu erscheinen . Original: Precision specifies the minimum number of digits to appear. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit Original: The default precision is The text has been machine-translated via Google Translate. Wenn sowohl der konvertierte Wert und die Präzision sind Original: If both the converted value and the precision are The text has been machine-translated via Google Translate. |
|
|
|
|
|
|
N/A | ||
fF
|
Precision gibt die minimale Anzahl der Stellen nach dem Komma Zeichen angezeigt werden . Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit Original: The default precision is The text has been machine-translated via Google Translate. In der alternative Implementierung Dezimalzeichen geschrieben, auch wenn ihm keine Ziffern folgen . Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A |
|
|
N/A | N/A | N/A | N/A |
|
e E
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Der Exponent enthält mindestens zwei Ziffern, mehr Stellen verwendet nur wenn notwendig sind . Original: The exponent contains at least two digits, more digits are used only if necessary. The text has been machine-translated via Google Translate. Wenn der Wert Original: If the value is The text has been machine-translated via Google Translate. Precision gibt die minimale Anzahl der Stellen nach dem Komma Zeichen angezeigt werden . Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit Original: The default precision is The text has been machine-translated via Google Translate. In der alternative Implementierung Dezimalzeichen geschrieben, auch wenn ihm keine Ziffern folgen . Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A | N/A | N/A | N/A | N/A | |||
a A
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Die erste Hexadezimalziffer ist Original: The first hexadecimal digit is The text has been machine-translated via Google Translate. Wenn der Wert Original: If the value is The text has been machine-translated via Google Translate. Precision gibt die minimale Anzahl der Stellen nach dem Komma Zeichen angezeigt werden . Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. Die Standard-Genauigkeit ist ausreichend für die exakte Darstellung des Werts . Original: The default precision is sufficient for exact representation of the value. The text has been machine-translated via Google Translate. In der alternative Implementierung Dezimalzeichen geschrieben, auch wenn ihm keine Ziffern folgen . Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A | N/A | N/A | N/A | N/A | |||
g G
|
Für die Original: For the The text has been machine-translated via Google Translate. Für die Original: For the The text has been machine-translated via Google Translate. Lassen Original: Let The text has been machine-translated via Google Translate.
Sofern alternative Darstellung wird gebeten die Nullen entfernt werden, auch das Dezimalzeichen wird entfernt, wenn keine Nachkommastellen gelassen wird . Original: Unless alternative representation is requested the trailing zeros are removed, also the decimal point character is removed if no fractional part is left. The text has been machine-translated via Google Translate. Für Unendlichkeit und not-a-number Umwandlung Stil Notizen anzusehen . Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. |
N/A | N/A | N/A | N/A | N/A | N/A | |||
n
|
Das Ergebnis ist' geschrieben zu dem Wert, auf den durch das Argument . Original: The result is written to the value pointed to by the argument. The text has been machine-translated via Google Translate. Die vollständige Spezifikation muss Original: The complete specification must be The text has been machine-translated via Google Translate. |
N/A | N/A | int*
|
N/A | N/A | N/A | N/A | N/A | N/A |
p
|
writes an implementation defined character sequence defining a pointer. | N/A | N/A | void*
|
N/A | N/A | N/A | N/A | N/A | N/A |
Die Gleitkomma-Konvertierung Funktionen wandeln unendlich bis Original: The floating point conversion functions convert infinity to The text has been machine-translated via Google Translate. Not-a-Nummer wird an Original: Not-a-number is converted to The text has been machine-translated via Google Translate. Die Umsätze Original: The conversions The text has been machine-translated via Google Translate. | ||||||||||
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Argumente, die zu druckenden Daten
Original:
arguments specifying data to print
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.