home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tyc
/
list16_8.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-16
|
359 b
|
17 lines
/* Demonstrates the remove() function. */
#include <stdio.h>
main()
{
char filename[80];
printf("Enter the filename to delete: ");
gets(filename);
if ( remove(filename) == 0)
printf("The file %s has been deleted.", filename);
else
fprintf(stderr, "Error deleting the file %s.", filename);
}