Espacios de nombres
Variantes

std::fputs

De cppreference.com
< cpp | io | c
 
 
Biblioteca de E/S
Manipuladores de E/S
E/S estilo C
Búferes
(en desuso en C++98)
Flujos
Abstracciones
E/S de archivos
E/S de cadenas
E/S de arrays
(en desuso en C++98)
(en desuso en C++98)
(en desuso en C++98)
Salida sincronizada
Tipos
Interfaz de categoría de error
(C++11)
 
 
Definido en el archivo de encabezado <cstdio>
int fputs( const char *str, FILE *stream );
Escribe dado terminada en nulo cadena de caracteres en el flujo de salida dado .
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.

Parámetros

str -
terminada en nulo cadena de caracteres a escribir
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 -
salida de corriente
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.

Valor de retorno

Entero no negativo sobre el éxito, EOF en caso de fallo
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.

Ver también

Imprime la salida formateada para stdout, una secuencia de archivo o un búfer.
(función) [editar]
escribe una cadena de caracteres a 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.

(función) [editar]
recibe una cadena de caracteres a partir de una secuencia de archivo
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.

(función) [editar]