std::fgetc, std::getc
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 fgetc( FILE *stream ); int getc( FILE *stream ); | ||
Legge il carattere successivo dal flusso di input dato. getc() può essere implementato come un macro.
Original:
Reads the next character from the given input stream. getc() may be implemented as a macro.
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
stream | - | per leggere il carattere da Original: to read the character from 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
Carattere successivo dal flusso o EOF se è verificato un errore o la fine del file è stato raggiunto.
Original:
Next character from the stream or EOF if an error has occurred or the end of file has been reached.
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
legge una stringa di caratteri da stdin Original: reads a character string from stdin The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
scrive un carattere a un flusso di file Original: writes a character 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) | |
mette un personaggio nuovo in un flusso di file Original: puts a character back into 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 fgetc, getc |