remove()

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

Syntax
#include <stdio.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 an error occurred; zero otherwise.

See also

tmpfile()

tmpnam()