fread()

Syntax:

#include <stdio.h>
int fread( void *buffer, size_t size, size_t num, FILE *stream );



Description:
The function fread() reads num number of objects (where each object is size bytes) and places them into the array pointed to by buffer. The data comes from the given input stream. The return value of the function is the number of things read...use |feof()| or |ferror()| to figure out if an error occurs.

Related Topics:
fwrite(), fopen(), fscanf(), fgetc(), getc()

Vadim avatar

Vadim