fread
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. |
<metanoindex/>
<tbody> </tbody>| definiert in Header <stdio.h>
|
||
size_t fread( void *buffer, size_t size, size_t count, FILE *stream ); |
||
Liest spezifizierten Anzahl von Objekten in dem Feld von dem gegebenen
buffer Eingabestrom stream. Objekte werden nicht in irgendeiner Weise zu interpretieren . Original:
Reads specified number of objects in the array
buffer from the given input stream stream. Objects are not interpreted in any way. 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.
Parameter
| buffer | - | Zeiger auf das erste Objekt-Objekt in dem Array zu lesen
Original: pointer to the first object object in the array to be read The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| size | - | Größe jedes Objekts in Bytes
Original: size of each object in bytes The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| count | - | die Anzahl der Objekte zu lesen
Original: the number of the objects to be read The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
Anzahl der Objekte erfolgreich gelesen
Original:
number of objects read successfully
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.
Siehe auch
liest formatierten Eingaben von stdin, eine Datei-Strom oder einen Puffer Original: reads formatted input from stdin, 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. (Funktion) | |
erhält eine Zeichenkette aus einem Datei-Stream 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. (Funktion) | |
eine Datei schreibt Original: writes to a file 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 fread
| |