remove()

This is a File I/O function. It is not implemented in the Compiler.

Syntax
  #include <stdlib.h>

  
  int remove(const char *filename);

  
Description

remove() deletes the file filename. If the file is open, remove() does not delete it and returns unsuccessfully.

Return

Non-zero, if there was an error; zero otherwise.

See also

tmpfile() and

tmpnam()