Code Snippets C

//Declaration: int remove(const char *fname);
//Return: returns zero on success or nonzero on error.
#include
int main(int argc, char *argv[])
{
if(remove("testing"))
printf("Remove Error");
return 0;
}