std::fputs
Материал из cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Заголовочный файл <cstdio>
|
||
| int fputs( const char *str, FILE *stream ); |
||
Записывает данный нулем строку символов в заданной выходной поток.
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.
[править] Параметры
| str | - | нулем строка символов должна быть написана
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 | - | выходной поток
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. |
[править] Возвращаемое значение
Неотрицательное целое число в случае успеха, EOF на провал
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.
[править] См. также
| (C++11) |
отпечатки отформатировать вывод stdout, поток файл или буфер 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. (функция) |
| пишет строку символов 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. (функция) | |
| получает строку символов из файла потока 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. (функция) | |
| C документация для fputs
| |