home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tyc
/
list1310.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-16
|
495b
|
28 lines
/* Demonstrates the system() function. */
#include <stdlib.h>
main()
{
/* Declare a buffer to hold input. */
char input[40];
while (1)
{
/* Get the user's command. */
puts("\nInput the desired DOS command, blank to exit");
gets(input);
/* Exit if a blank line was entered. */
if (input[0] == '\0')
exit(0);
/* Execute the command. */
system(input);
}
}