Réponse acceptée !
int fread (void * buffer , size_t size , size_t count , FILE * stream ); Read block of data from a stream.
Read count number of items each one with a size of size bytes from the stream and stores it in the specified buffer.
Stream's postion indicator is increased by the number of bytes readed.
Total amount of bytes read is (size x count).
Parameters.
- buffer
- Pointer to the destination structure with a minimum size of (size*count) bytes.
- size
- Size in bytes of each item to be read.
- count
- Number of items, each one with a size of size bytes.
- stream
- pointer to an open file.
contre les trous de memoire : http://www.cplusplus.com/ref/#libs (il n'y a pas que des references c++)