std::fputs
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 <cstdio>
|
||
int fputs( const char *str, FILE *stream ); |
||
Scrive dato terminazione null stringa di caratteri nel flusso di output dato.
Original:
Writes given null-terminated character string to the given output 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.
[modifica] Parametri
str | - | terminazione null stringa di caratteri da scrivere
Original: null-terminated character string to be written The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
stream | - | uscita del flusso
Original: output stream 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
Intero non negativo in caso di successo, EOF in caso di fallimento
Original:
Non-negative integer on success, EOF on failure
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] Vedi anche
(C++11) |
stampe formattata uscita stdout, un flusso di file o di un buffer Original: prints formatted output to stdout, a file stream or a buffer 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 di caratteri stdout Original: writes a character string to stdout The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
ottiene una stringa di caratteri da un flusso di file Original: gets a character string from 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 fputs
|