home *** CD-ROM | disk | FTP | other *** search
- main() /* unlink.c -- demonstrates file deleting program */
-
- {
- char victim[25];
-
- printf("Name of disposable file to erase? ");
- gets(victim);
- printf("%d\n", unlink(victim));
- puts("Correct output: 0 if file existed, -1 if it did not");
- }