std::fputc, std::putc
Aus 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. |
definiert in Header <cstdio>
|
||
int fputc( int ch, FILE *stream ); int putc( int ch, FILE *stream ); |
||
Schreibt ein Zeichen
ch
an die angegebene Ausgabe-Stream stream
. putc() Funktion kann als Makro implementiert werden . 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.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten] Parameter
ch | - | Zeichen geschrieben werden
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 | - | die Ausgabe-Stream
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. |
[Bearbeiten] Rückgabewert
ch
bei Erfolg EOF bei Ausfall .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.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten] Siehe auch
Schreibt ein Zeichen in 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. (Funktion) | |
C documentation for fputc, putc
|