home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG5_2.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  646 b   |  30 lines

  1. /*Program 5_2 - Return Status upon Exit
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Use the return of status to indicate to a .BAT file what character
  5.   was depressed.
  6. */
  7.  
  8. #include <stdio.h>
  9. #include <ctype.h>
  10. #include <process.h>
  11.  
  12. /*Main - pose the question and await the response*/
  13. void main (argc, argv)
  14.      unsigned argc;
  15.      char *argv [];
  16. {
  17.      /*provide the question*/
  18.      if (argc <= 1)
  19.           printf ("Yes or No?");
  20.      else
  21.           while (**++argv)
  22.                printf ("%s ", *argv);
  23.  
  24.      /*now get the response*/
  25.      if (tolower (getchar ()) == 'y')
  26.           exit (0);
  27.      else
  28.           exit (1);
  29. }
  30.