#include <unistd.h> int unlink(const char *file);
This function removes a file from the file system.
Zero on success, nonzero on failure.
not ANSI, POSIX
unlink("data.txt");
Go to the first, previous, next, last section, table of contents.