home *** CD-ROM | disk | FTP | other *** search
- /*Program 3_6 - Print out the Arguments to the Program
- by Stephen R. Davis, 1987
-
- More or less trivial example of accessing the arguments to
- a C program; however, this does allow the user a simple means
- of testing what various things look like to the program. Note
- that argv[0], normally the program name, is empty under DOS 2.x.
- */
-
- #include <stdio.h>
-
- main (argc, argv)
- int argc;
- char *argv[];
- {
- unsigned i;
-
- i = 0;
- for (; argc; argc--) {
- printf ("argument #%u: %s\n", i, argv[i]);
- i++;
- }
- }