wprintf, fwprintf, swprintf
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Déclaré dans l'en-tête <wchar.h>
|
||
int wprintf( const wchar_t* format, ... ); |
(1) | |
int fwprintf( FILE *stream, const wchar_t* format, ... ); |
(2) | |
int swprintf( char *buffer, const wchar_t* format, ... ); |
(3) | |
Charge les données à partir des emplacements donnés, les convertit en équivalents de chaîne de large et enregistre les résultats dans une variété de lavabos .
Original:
Loads the data from the given locations, converts them to wide string equivalents and writes the results to a variety of sinks.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Écrit les résultats stdout .
Original:
Writes the results to stdout.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Écrit les résultats dans un fichier ..
stream fluxOriginal:
Writes the results to a file stream
stream.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
Écrit les résultats dans un
buffer chaîne large .Original:
Writes the results to a wide string
buffer.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Paramètres
| This section is incomplete |
Retourne la valeur
Nombre de caractères larges écrits si la valeur réussie ou négatif si une erreur est survenue .
Original:
Number of wide characters written if successful or negative value if an error occurred.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
impressions résultat formaté caractère large stdout, un stream fichier ou un tampon en utilisant la liste d'arguments variable Original: prints formatted wide character output to stdout, a file stream or a buffer using variable argument list The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
écrit une chaîne de large pour un flux de fichier Original: writes a wide string to a file stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
C++ documentation for wprintf, fwprintf, swprintf
| |