Defined in header <stdio.h>        size_t fwrite( const void *buffer, size_t size, size_t count,
               FILE *stream );     (until C99)   size_t fwrite( const void *restrict buffer, size_t size, size_t count, 
               FILE *restrict stream );     (since C99)  
Writes count of objects in the given array buffer to the output stream stream. Objects are not interpreted in any way.
  Parameters 
 buffer   -   pointer to the first object object in the array to be written   size