std::wprintf, std::fwprintf, std::swprintf

Da cppreference.com.
< cpp‎ | io‎ | c

 
 
Ingresso / libreria di output
I / O manipolatori
C-style I / O
Buffer
Original:
Buffers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_streambuf
basic_filebuf
basic_stringbuf
strstreambuf(deprecato)
Streams
Original:
Streams
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Astrazioni
Original:
Abstractions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ios_base
basic_ios
basic_istream
basic_ostream
basic_iostream
File I / O
Original:
File I/O
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_ifstream
basic_ofstream
basic_fstream
String I / O
Original:
String I/O
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_istringstream
basic_ostringstream
basic_stringstream
Array I / O
Original:
Array I/O
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
istrstream(deprecato)
ostrstream(deprecato)
strstream(deprecato)
Tipi
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
streamoff
streamsize
fpos
Errore categoria interfaccia
Original:
Error category interface
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iostream_category(C++11)
io_errc(C++11)
 
C-style I / O
Funzioni
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Accesso ai file
Original:
File access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Diretta input / output
Original:
Direct input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
fread
fwrite
Ingresso formattato / uscita
Original:
Unformatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Formattato di input / output
Original:
Formatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
File di posizionamento
Original:
File positioning
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ftell
fgetpos
fseek
fsetpos
rewind
La gestione degli errori
Original:
Error handling
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
clearerr
feof
ferror
perror
Le operazioni sui file
Original:
Operations on files
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
remove
rename
tmpfile
tmpnam
 
Elemento definito nell'header <cwchar>
int wprintf(constwchar_t* format, ... );
(1)
int fwprintf(std::FILE* stream, constwchar_t* format, ... );
(2)
int swprintf(wchar_t* buffer, std::size_t size, constwchar_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.
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.
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.
3)
Scrive i risultati in un buffer stringa di larghezza. Al massimo size-1 caratteri estesi vengono scritti. La stringa risultante di caratteri estesi viene terminata con un carattere null, a meno che size è pari a zero.
Original:
Writes the results to a wide string buffer. At most size-1 wide characters are written. The resulting wide character string will be terminated with a null character, unless size is zero.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Indice

[modifica]Parametri

stream -
file di flusso di output per scrivere
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.
buffer -
puntatore a una stringa di caratteri estesi in cui scrivere
Original:
pointer to a wide 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.
size -
fino a caratteri size - 1 può essere scritto, più il terminatore null
Original:
up to 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.
format -
puntatore ad una stringa con terminazione null che specifica gamma come interpretare i dati.
La stringa di formato è composto da spazi bianchi, caratteri diversi da spazi (ad eccezione %) e le specifiche di conversione. Ogni specifica di conversione ha il seguente formato:
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.
  • % carattere introduttivo
    Original:
    introductory % character
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • (opzionale) uno o più flag che modificano il comportamento della conversione:
    Original:
    (opzionale) 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.
  • -: il risultato della conversione viene allineato a sinistra nel campo (per impostazione predefinita è allineato a destra)
    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.
  • +: il segno di conversioni firmati è sempre anteporre al risultato della conversione (per default il risultato è preceduto da meno solo quando è negativo)
    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.
  • Spazio: se il risultato di una conversione firmato non inizia con un carattere di segno, o è vuoto, lo spazio viene anteposto al risultato. Viene ignorato se + bandiera è presente.
    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.
  • #: forma alternativa della conversione viene eseguita. Vedere la tabella sottostante per gli effetti esatti.
    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: per le conversioni interi e virgola mobile il numero, gli zeri iniziali vengono utilizzati per riempire il campo al posto dello spazio personaggi. Per i numeri in virgola mobile viene ignorato se la precisione è specificato in modo esplicito. Per le conversioni che utilizzano questo si traduce in un comportamento indefinito bandiera. Viene ignorato se - bandiera è presente.
    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.
  • (opzionale) valore intero o * che specifica larghezza minima del campo. Il risultato è imbottito con lo spazio personaggi (per impostazione predefinita), se richiesto, a sinistra quando giustificato a destra, o sulla destra se allineato a sinistra. Nel caso in cui viene utilizzato *, la larghezza viene specificato da un ulteriore argomento di int tipo. Se il valore dell'argomento è negativo, risulta con la larghezza - campo flag specificato e positivo.
    Original:
    (opzionale) 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 type int. 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.
  • (opzionale). seguito da un numero intero o * che specifica la precisione' della conversione. Nel caso in cui viene utilizzato *, la precisione' è specificato da un ulteriore argomento di int tipo. Se il valore di questo argomento è negativo, viene ignorato. Vedere la tabella sottostante per gli effetti esatti di precisione'.
    Original:
    (opzionale). 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 type int. 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.
  • (opzionale) lunghezza' modificatore che specifica la dimensione dell'argomento
    Original:
    (opzionale)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.
  • conversione di formato
    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.
Gli identificatori di formato sono disponibili i seguenti:
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 hhh (none) llljztL
% writes literal %. The full conversion specification must be %%. N/AN/AN/AN/AN/AN/AN/AN/AN/A
c writes a single characterN/AN/Acharwchar_tN/AN/AN/AN/AN/A
s writes a character stringN/AN/Achar*wchar_t*N/AN/AN/AN/AN/A
d
i
converte 'intero decimale' a firmato in stile [-] dddd.
Original:
converts a signed decimal integer in the style [-]dddd.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare. La precisione di default è 1.
Original:
Precision specifies the minimum number of digits to appear. The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
signedchar
signedshort
signedint
signedlong
signedlonglong
intmax_t
size_t
ptrdiff_t
N/A
o
converte un firmato 'ottale intero' in stile [-] oooo.
Original:
converts a signed octal integer in the style [-]oooo.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare. La precisione di default è 1.
Original:
Precision specifies the minimum number of digits to appear. The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' precisione viene aumentata se necessario, per scrivere uno zero.
Original:
In the alternative implementation precision is increased if necessary, to write one leading zero.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
In tal caso, se sia il valore convertito e la precisione sono 0, 0 singolo è scritto.
Original:
In that case if both the converted value and the precision are 0, single 0 is written.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/A
x
X
converte 'intero esadecimale' a firmato in stile [-] hhhh.
Original:
converts a signed hexadecimal integer in the style [-]hhhh.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per le lettere di conversione di xabcdef sono used.
Original:
For the x conversion letters abcdef are used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per le lettere di conversione di XABCDEF sono used.
Original:
For the X conversion letters ABCDEF are used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare. La precisione di default è 1.
Original:
Precision specifies the minimum number of digits to appear. The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa'0x o 0X è prefisso risultati se il valore convertito è diverso da zero.
Original:
In the alternative implementation0x or 0X is prefixed to results if the converted value is nonzero.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/A
u
converte 'intero decimale senza segno' un in stile dddd.
Original:
converts an unsigned decimal integer in the style dddd.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare.
Original:
Precision specifies the minimum number of digits to appear.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è 1.
Original:
The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unsignedchar
unsignedshort
unsignedint
unsignedlong
unsignedlonglong
uintmax_t
N/A
f
F
converte 'numero in virgola mobile' per la notazione decimale in stile [-] ddd.ddd.
Original:
converts floating-point number to the decimal notation in the style [-]ddd.ddd.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione specifica il numero minimo di cifre da visualizzare dopo il carattere punto decimale.
Original:
Precision specifies the minimum number of digits to appear after the decimal point character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è 6.
Original:
The default precision is 6.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' carattere separatore decimale è scritto anche se non lo seguono cifre.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/A
double
double
N/AN/AN/AN/A
longdouble
e
E
converte 'virgola mobile Numero' per la notazione decimale esponente.
Original:
converts floating-point number to the decimal exponent notation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione e [-] d.ddd e' è ± gg used.
Original:
For the e conversion style [-]d.ddde±dd is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione E [-] d.ddd E' è ± gg used.
Original:
For the E conversion style [-]d.dddE±dd is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
L'esponente contiene almeno due cifre, vengono utilizzati più di tre cifre solo se necessario.
Original:
The exponent contains at least two digits, more digits are used only if necessary.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se il valore è 0, l'esponente è anche 0.
Original:
If the value is 0, the exponent is also 0.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione specifica il numero minimo di cifre da visualizzare dopo il carattere punto decimale.
Original:
Precision specifies the minimum number of digits to appear after the decimal point character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è 6.
Original:
The default precision is 6.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' carattere separatore decimale è scritto anche se non lo seguono cifre.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/AN/AN/AN/AN/A
a
A
converte 'virgola mobile Numero' per la notazione esadecimale esponente.
Original:
converts floating-point number to the hexadecimal exponent notation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione a [-] 0x' h.hhh p ± d è used.
Original:
For the a conversion style [-]0xh.hhhp±d is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione A [-] 0X' h.hhh P ± d è used.
Original:
For the A conversion style [-]0Xh.hhhP±d is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La cifra esadecimale prima 0 se l'argomento non è un valore in virgola mobile normalizzato.
Original:
The first hexadecimal digit is 0 if the argument is not a normalized floating point value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se il valore è 0, l'esponente è anche 0.
Original:
If the value is 0, the exponent is also 0.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione specifica il numero minimo di cifre da visualizzare dopo il carattere punto decimale.
Original:
Precision specifies the minimum number of digits to appear after the decimal point character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è sufficiente per la rappresentazione esatta del valore di.
Original:
The default precision is sufficient for exact representation of the value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' carattere separatore decimale è scritto anche se non lo seguono cifre.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/AN/AN/AN/AN/A
g
G
converte 'numero in virgola mobile esponente decimale alla notazione decimale o in base al valore e la precisione'.
Original:
converts floating-point number to decimal or decimal exponent notation depending on the value and the precision.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione di stile di conversione g con e stile o f sarà performed.
essere
Original:
For the g conversion style conversion with style e or f will be performed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione di stile di conversione G con E stile o F sarà performed.
essere
Original:
For the G conversion style conversion with style E or F will be performed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Lasciate P uguale la precisione, se diverso da zero, 6 se la precisione non è specificato o 1 se la precisione è 0. Poi, se una conversione con E stile avrebbe un esponente di X:
Original:
Let P equal the precision if nonzero, 6 if the precision is not specified, or 1 if the precision is 0. Then, if a conversion with style E would have an exponent of X:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • se P> X ≥ -4, la conversione è con stile f o F e precisione P - 1 - X.
    Original:
    if P > X ≥ −4, the conversion is with style f or F and precision P − 1 − X.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • altrimenti, la conversione è con stile e o E e precisione P - 1.
    Original:
    otherwise, the conversion is with style e or E and precision P − 1.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
A meno che rappresentazione alternativa è richiesto gli zeri finali vengono rimossi, anche il carattere separatore decimale viene rimosso se non parte frazionaria è lasciato.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/AN/AN/AN/AN/A
n
restituisce 'il numero di caratteri scritti' la finora da questa chiamata alla funzione.
Original:
returns the number of characters written so far by this call to the function.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Il risultato è' scritto con il valore a cui punta l'argomento.
Original:
The result is written to the value pointed to by the argument.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
L'intera specifica deve essere %n.
Original:
The complete specification must be %n.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/Aint*N/AN/AN/AN/AN/AN/A
p writes an implementation defined character sequence defining a pointer. N/AN/Avoid*N/AN/AN/AN/AN/AN/A
'Nota:'
Original:
Notes:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
I galleggianti funzioni di conversione punto convertire infinito a inf o infinity. Qual è usato è defined.
attuazione
Original:
The floating point conversion functions convert infinity to inf or infinity. Which one is used is implementation defined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Not-a-numero viene convertito in nan o nan(char_sequence). Qual è usato è defined.
attuazione
Original:
Not-a-number is converted to nan or nan(char_sequence). Which one is used is implementation defined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Le conversioni F, E, G, A uscita INF, INFINITY, NAN invece.
Original:
The conversions F, E, G, A output INF, INFINITY, NAN instead.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Original:
pointer to a null-terminated wide string specifying how to interpret the data.
La stringa di formato è composto da spazi bianchi, caratteri diversi da spazi (ad eccezione %) e le specifiche di conversione. Ogni specifica di conversione ha il seguente formato:
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.
  • % carattere introduttivo
    Original:
    introductory % character
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • (opzionale) uno o più flag che modificano il comportamento della conversione:
    Original:
    (opzionale) 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.
  • -: il risultato della conversione viene allineato a sinistra nel campo (per impostazione predefinita è allineato a destra)
    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.
  • +: il segno di conversioni firmati è sempre anteporre al risultato della conversione (per default il risultato è preceduto da meno solo quando è negativo)
    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.
  • Spazio: se il risultato di una conversione firmato non inizia con un carattere di segno, o è vuoto, lo spazio viene anteposto al risultato. Viene ignorato se + bandiera è presente.
    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.
  • #: forma alternativa della conversione viene eseguita. Vedere la tabella sottostante per gli effetti esatti.
    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: per le conversioni interi e virgola mobile il numero, gli zeri iniziali vengono utilizzati per riempire il campo al posto dello spazio personaggi. Per i numeri in virgola mobile viene ignorato se la precisione è specificato in modo esplicito. Per le conversioni che utilizzano questo si traduce in un comportamento indefinito bandiera. Viene ignorato se - bandiera è presente.
    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.
  • (opzionale) valore intero o * che specifica larghezza minima del campo. Il risultato è imbottito con lo spazio personaggi (per impostazione predefinita), se richiesto, a sinistra quando giustificato a destra, o sulla destra se allineato a sinistra. Nel caso in cui viene utilizzato *, la larghezza viene specificato da un ulteriore argomento di int tipo. Se il valore dell'argomento è negativo, risulta con la larghezza - campo flag specificato e positivo.
    Original:
    (opzionale) 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 type int. 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.
  • (opzionale). seguito da un numero intero o * che specifica la precisione' della conversione. Nel caso in cui viene utilizzato *, la precisione' è specificato da un ulteriore argomento di int tipo. Se il valore di questo argomento è negativo, viene ignorato. Vedere la tabella sottostante per gli effetti esatti di precisione'.
    Original:
    (opzionale). 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 type int. 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.
  • (opzionale) lunghezza' modificatore che specifica la dimensione dell'argomento
    Original:
    (opzionale)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.
  • conversione di formato
    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.
Gli identificatori di formato sono disponibili i seguenti:
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 hhh (none) llljztL
% writes literal %. The full conversion specification must be %%. N/AN/AN/AN/AN/AN/AN/AN/AN/A
c writes a single characterN/AN/Acharwchar_tN/AN/AN/AN/AN/A
s writes a character stringN/AN/Achar*wchar_t*N/AN/AN/AN/AN/A
d
i
converte 'intero decimale' a firmato in stile [-] dddd.
Original:
converts a signed decimal integer in the style [-]dddd.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare. La precisione di default è 1.
Original:
Precision specifies the minimum number of digits to appear. The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
signedchar
signedshort
signedint
signedlong
signedlonglong
intmax_t
size_t
ptrdiff_t
N/A
o
converte un firmato 'ottale intero' in stile [-] oooo.
Original:
converts a signed octal integer in the style [-]oooo.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare. La precisione di default è 1.
Original:
Precision specifies the minimum number of digits to appear. The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' precisione viene aumentata se necessario, per scrivere uno zero.
Original:
In the alternative implementation precision is increased if necessary, to write one leading zero.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
In tal caso, se sia il valore convertito e la precisione sono 0, 0 singolo è scritto.
Original:
In that case if both the converted value and the precision are 0, single 0 is written.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/A
x
X
converte 'intero esadecimale' a firmato in stile [-] hhhh.
Original:
converts a signed hexadecimal integer in the style [-]hhhh.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per le lettere di conversione di xabcdef sono used.
Original:
For the x conversion letters abcdef are used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per le lettere di conversione di XABCDEF sono used.
Original:
For the X conversion letters ABCDEF are used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare. La precisione di default è 1.
Original:
Precision specifies the minimum number of digits to appear. The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa'0x o 0X è prefisso risultati se il valore convertito è diverso da zero.
Original:
In the alternative implementation0x or 0X is prefixed to results if the converted value is nonzero.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/A
u
converte 'intero decimale senza segno' un in stile dddd.
Original:
converts an unsigned decimal integer in the style dddd.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione' specifica il numero minimo di cifre da visualizzare.
Original:
Precision specifies the minimum number of digits to appear.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è 1.
Original:
The default precision is 1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sia il valore convertito e la precisione sono 0 i risultati della conversione in nessun carattere.
Original:
If both the converted value and the precision are 0 the conversion results in no characters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unsignedchar
unsignedshort
unsignedint
unsignedlong
unsignedlonglong
uintmax_t
N/A
f
F
converte 'numero in virgola mobile' per la notazione decimale in stile [-] ddd.ddd.
Original:
converts floating-point number to the decimal notation in the style [-]ddd.ddd.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione specifica il numero minimo di cifre da visualizzare dopo il carattere punto decimale.
Original:
Precision specifies the minimum number of digits to appear after the decimal point character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è 6.
Original:
The default precision is 6.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' carattere separatore decimale è scritto anche se non lo seguono cifre.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/A
double
double
N/AN/AN/AN/A
longdouble
e
E
converte 'virgola mobile Numero' per la notazione decimale esponente.
Original:
converts floating-point number to the decimal exponent notation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione e [-] d.ddd e' è ± gg used.
Original:
For the e conversion style [-]d.ddde±dd is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione E [-] d.ddd E' è ± gg used.
Original:
For the E conversion style [-]d.dddE±dd is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
L'esponente contiene almeno due cifre, vengono utilizzati più di tre cifre solo se necessario.
Original:
The exponent contains at least two digits, more digits are used only if necessary.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se il valore è 0, l'esponente è anche 0.
Original:
If the value is 0, the exponent is also 0.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione specifica il numero minimo di cifre da visualizzare dopo il carattere punto decimale.
Original:
Precision specifies the minimum number of digits to appear after the decimal point character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è 6.
Original:
The default precision is 6.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' carattere separatore decimale è scritto anche se non lo seguono cifre.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/AN/AN/AN/AN/A
a
A
converte 'virgola mobile Numero' per la notazione esadecimale esponente.
Original:
converts floating-point number to the hexadecimal exponent notation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione a [-] 0x' h.hhh p ± d è used.
Original:
For the a conversion style [-]0xh.hhhp±d is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per lo stile di conversione A [-] 0X' h.hhh P ± d è used.
Original:
For the A conversion style [-]0Xh.hhhP±d is used.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La cifra esadecimale prima 0 se l'argomento non è un valore in virgola mobile normalizzato.
Original:
The first hexadecimal digit is 0 if the argument is not a normalized floating point value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se il valore è 0, l'esponente è anche 0.
Original:
If the value is 0, the exponent is also 0.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Precisione specifica il numero minimo di cifre da visualizzare dopo il carattere punto decimale.
Original:
Precision specifies the minimum number of digits to appear after the decimal point character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La precisione di default è sufficiente per la rappresentazione esatta del valore di.
Original:
The default precision is sufficient for exact representation of the value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nella implementazione alternativa' carattere separatore decimale è scritto anche se non lo seguono cifre.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/AN/AN/AN/AN/A
g
G
converte 'numero in virgola mobile esponente decimale alla notazione decimale o in base al valore e la precisione'.
Original:
converts floating-point number to decimal or decimal exponent notation depending on the value and the precision.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione di stile di conversione g con e stile o f sarà performed.
essere
Original:
For the g conversion style conversion with style e or f will be performed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione di stile di conversione G con E stile o F sarà performed.
essere
Original:
For the G conversion style conversion with style E or F will be performed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Lasciate P uguale la precisione, se diverso da zero, 6 se la precisione non è specificato o 1 se la precisione è 0. Poi, se una conversione con E stile avrebbe un esponente di X:
Original:
Let P equal the precision if nonzero, 6 if the precision is not specified, or 1 if the precision is 0. Then, if a conversion with style E would have an exponent of X:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • se P> X ≥ -4, la conversione è con stile f o F e precisione P - 1 - X.
    Original:
    if P > X ≥ −4, the conversion is with style f or F and precision P − 1 − X.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • altrimenti, la conversione è con stile e o E e precisione P - 1.
    Original:
    otherwise, the conversion is with style e or E and precision P − 1.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
A meno che rappresentazione alternativa è richiesto gli zeri finali vengono rimossi, anche il carattere separatore decimale viene rimosso se non parte frazionaria è lasciato.
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.
You can help to correct and verify the translation. Click here for instructions.
Per la conversione in stile infinito e non-a-number vedere le note.
Original:
For infinity and not-a-number conversion style see notes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/AN/AN/AN/AN/A
n
restituisce 'il numero di caratteri scritti' la finora da questa chiamata alla funzione.
Original:
returns the number of characters written so far by this call to the function.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Il risultato è' scritto con il valore a cui punta l'argomento.
Original:
The result is written to the value pointed to by the argument.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
L'intera specifica deve essere %n.
Original:
The complete specification must be %n.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
N/AN/Aint*N/AN/AN/AN/AN/AN/A
p writes an implementation defined character sequence defining a pointer. N/AN/Avoid*N/AN/AN/AN/AN/AN/A
'Nota:'
Original:
Notes:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
I galleggianti funzioni di conversione punto convertire infinito a inf o infinity. Qual è usato è defined.
attuazione
Original:
The floating point conversion functions convert infinity to inf or infinity. Which one is used is implementation defined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Not-a-numero viene convertito in nan o nan(char_sequence). Qual è usato è defined.
attuazione
Original:
Not-a-number is converted to nan or nan(char_sequence). Which one is used is implementation defined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Le conversioni F, E, G, A uscita INF, INFINITY, NAN invece.
Original:
The conversions F, E, G, A output INF, INFINITY, NAN instead.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
... -
argomenti che specificano i dati da stampare
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.

[modifica]Valore di ritorno

Numero di caratteri estesi scritti se il valore di successo (senza contare il carattere nullo di terminazione) o negativo in caso di errore.
Original:
Number of wide characters written if successful (not counting the terminating null character) 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.

[modifica]Esempio

[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)[modifica]
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)[modifica]
C documentation for wprintf, fwprintf, swprintf
close