Revision as of 17:15, 22 August 2010 edit1exec1 (talk | contribs)Pending changes reviewers, Rollbackers50,085 edits Reverted 2 edits by BiT; Example is not appropriate and invalid as argv does not necessarily refer to the executable itself. See how exec() is invoked. (TW)← Previous edit | Revision as of 19:58, 20 June 2011 edit undo1exec1 (talk | contribs)Pending changes reviewers, Rollbackers50,085 edits →External links: added link to C++ specific documentationNext edit → | ||
Line 18: | Line 18: | ||
#include <stdio.h> | #include <stdio.h> | ||
int main() { | int main() | ||
{ | |||
const char *filename = "a.txt"; | const char *filename = "a.txt"; | ||
remove (filename); | remove (filename); | ||
return 0; | return 0; | ||
} | |||
} | |||
</source> | </source> | ||
==External links== | |||
* | |||
] | ] |
Revision as of 19:58, 20 June 2011
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; }