Header: stdio.h
Syntax:
extern size_t fread
(
void *ptr,
size_t size,
size_t nmemb,
FILE *stream
);
Purpose: This function reads into the array ptr, up to nmemb elements from stream each of size bytes, and returns the number of elements successfully read.
|
|
|