home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_2 - Return Status upon Exit
- by Stephen R. Davis, 1987
-
- Use the return of status to indicate to a .BAT file what character
- was depressed.
- */
-
- #include <stdio.h>
- #include <ctype.h>
- #include <process.h>
-
- /*Main - pose the question and await the response*/
- void main (argc, argv)
- unsigned argc;
- char *argv [];
- {
- /*provide the question*/
- if (argc <= 1)
- printf ("Yes or No?");
- else
- while (**++argv)
- printf ("%s ", *argv);
-
- /*now get the response*/
- if (tolower (getchar ()) == 'y')
- exit (0);
- else
- exit (1);
- }