wprintf, fwprintf, swprintf
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <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) | |
Carica i dati dalle posizioni indicate, li converte in equivalenti a livello di stringa e scrive i risultati di una serie di pozzi di assorbimento.
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)
Scrive i risultati 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)
Scrive i risultati in un
stream
flusso di file.Original:
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)
Scrive i risultati in un
buffer
stringa ampio.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.
Indice |
[modifica] Parametri
This section is incomplete |
[modifica] Valore di ritorno
Numero di caratteri estesi scritti se il valore di esito positivo o negativo in caso di errore.
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.
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
stampe formattata uscita ampio carattere stdout, stream un file o un buffer utilizzando elenco di argomenti variabili 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. (funzione) | |
scrive una stringa bersaglio un flusso di file 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. (funzione) | |
C++ documentation for wprintf, fwprintf, swprintf
|