tmpfile()

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

Syntax
  #include <stdio.h>
  
  FILE *tmpfile(void);

  
Description

tmpfile() creates a new temporary file using mode wb+. Temporary files are deleted automatically when closed or the application ends.

Return

A pointer to the file descriptor if the file is created; NULL otherwise.

See also

fopen()

tmpnam()