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

  1. /*Program 3_6 - Print out the Arguments to the Program
  2.     by Stephen R. Davis, 1987
  3.  
  4.   More or less trivial example of accessing the arguments to
  5.   a C program; however, this does allow the user a simple means
  6.   of testing what various things look like to the program.  Note
  7.   that argv[0], normally the program name, is empty under DOS 2.x.
  8. */
  9.  
  10. #include <stdio.h>
  11.  
  12. main (argc, argv)
  13.     int argc;
  14.     char *argv[];
  15. {
  16.     unsigned i;
  17.  
  18.     i = 0;
  19.     for (; argc; argc--) {
  20.          printf ("argument #%u: %s\n", i, argv[i]);
  21.          i++;
  22.     }
  23. }
  24.