This is a File I/O function. It is not implemented in the Compiler.
#include <stdio.h>
size_t fwrite(const void *p,
size_t size,
size_t n,
FILE *f);
fwrite() writes a block of data to file f. It writes n items of size size, starting at address ptr.
The number of items successfully written.
fputs(), and