fwrite()

This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.

Syntax
  #include <stdio.h>

  
  size_t fwrite(const void *p,

  
                size_t size,

  
                size_t n,

  
                FILE *f);

  
Description

fwrite() writes a block of data to file f. It writes n items of size size, starting at address ptr.

Return

The number of items successfully written.

See also

fputc()

fputs()

fread()