Declaration:
int remove(const char * filename);
Deletes the given filename so that it is no longer accessible
(unlinks the file). If the file is currently open, then the
result is implementation-defined.
On success zero is returned. On failure a nonzero value is
returned.
|