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. |
| Defined in header <cstdio>
|
||
| int fputs( const char *str, FILE *stream ); |
||
与えられたNULLで終わる文字列が指定された出力ストリームに書き込みます.
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 | - | NULLで終わる文字列が書き込まれます
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 documentation for fputs
| |