home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list1310.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  495b  |  28 lines

  1.  /* Demonstrates the system() function. */
  2.  
  3.  #include <stdlib.h>
  4.  
  5.  main()
  6.  {
  7.      /* Declare a buffer to hold input. */
  8.  
  9.      char input[40];
  10.  
  11.      while (1)
  12.      {
  13.          /* Get the user's command. */
  14.  
  15.          puts("\nInput the desired DOS command, blank to exit");
  16.          gets(input);
  17.  
  18.          /* Exit if a blank line was entered. */
  19.  
  20.          if (input[0] == '\0')
  21.              exit(0);
  22.  
  23.          /* Execute the command. */
  24.  
  25.          system(input);
  26.      }
  27.  }
  28.