Espacios de nombres
Variantes
Acciones

std::fputc, std::putc

De cppreference.com
< cpp‎ | io‎ | c
 
 
 
 
Definido en el archivo de encabezado <cstdio>
int fputc(int ch, FILE *stream );
int putc(int ch, FILE *stream );
Escribe un ch carácter a la salida stream flujo dado. putc() función se puede implementar como una macro .
Original:
Writes a character ch to the given output stream stream. putc() function 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.

[editar]Parámetros

ch -
carácter a ser escrito
Original:
character 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 -
el flujo de salida
Original:
the output stream
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

ch en caso de éxito, EOF en caso de fallo .
Original:
ch 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.

[editar]Ver también

escribe un carácter a stdout
Original:
writes a character to stdout
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
Documentación de C para fputc, putc
close