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:
C/C++ Source or Header  |  1993-10-16  |  359 b   |  17 lines

  1.  /* Demonstrates the remove() function. */
  2.  
  3.  #include <stdio.h>
  4.  
  5.  main()
  6.  {
  7.      char filename[80];
  8.  
  9.      printf("Enter the filename to delete: ");
  10.      gets(filename);
  11.  
  12.      if ( remove(filename) == 0)
  13.          printf("The file %s has been deleted.", filename);
  14.      else
  15.          fprintf(stderr, "Error deleting the file %s.", filename);
  16.  }
  17.