This is an old revision of this page, as edited by Vadmium (talk | contribs) at 07:36, 27 September 2011 (→External links: Category:C programming language → Category:C standard library). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 07:36, 27 September 2011 by Vadmium (talk | contribs) (→External links: Category:C programming language → Category:C standard library)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)remove is a function in C programming language that removes a certain file. It is included in the C standard library header file stdio.h
.
The prototype of the function is as follows:
int remove ( const char * filename );
If successful, the function returns zero. Nonzero value is returned on failure and errno
variable is set to corresponding error code.
Sample usage
The following program demonstrates common usage of remove
:
#include <stdio.h> int main() { const char *filename = "a.txt"; remove (filename); return 0; }