「cpp/io/c/ungetc」の版間の差分
提供: cppreference.com
細 (r2.7.3) (ロボットによる 追加: en:cpp/io/c/ungetc, fr:cpp/io/c/ungetc, zh:cpp/io/c/ungetc) |
TranslationBot (トーク | 投稿記録) (Translated from the English version using Google Translate) |
||
1行: | 1行: | ||
− | {{title|ungetc}} | + | {{ |
− | + | title| ungetc}} | |
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
− | + | = | |
− | + | ||
− | + | ||
− | + | ||
+ | |||
− | + | ||
+ | |||
− | + | ||
+ | |||
+ | |||
+ | |||
+ | cpp/io/c/ | ||
+ | | /io/ | ||
+ | |||
− | |||
[[fr:cpp/io/c/ungetc]] | [[fr:cpp/io/c/ungetc]] | ||
+ | |||
[[zh:cpp/io/c/ungetc]] | [[zh:cpp/io/c/ungetc]] |
2012年10月26日 (金) 07:00時点における版
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
ヘッダ <cstdio> で定義
|
||
int ungetc( int ch, FILE *stream ); |
||
与えられたファイルストリームに戻す文字
ch
を置く. Original:
Puts the character
ch
back to the given file 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.
パラメータ
ch | - | 戻される文字
Original: character to be put back The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
stream | - | 背中に文字を入れて流れを起こす
Original: file stream to put the character back to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
値を返します
成功
ch
に返されます.Original:
On success
ch
is returned.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.
障害EOFに返され、指定されたストリームは変更されません.
Original:
On failure EOF is returned and the given stream remains unchanged.
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 documentation for ungetc
|