home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day21 / args.c next >
C/C++ Source or Header  |  2002-08-11  |  392b  |  21 lines

  1. /* Accessing command-line arguments. */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7.     int count;
  8.  
  9.     printf("Program name: %s\n", argv[0]);
  10.  
  11.     if (argc > 1)
  12.     {
  13.         for (count = 1; count < argc; count++)
  14.             printf("Argument %d: %s\n", count, argv[count]);
  15.     }
  16.     else
  17.         puts("No command line arguments entered.");
  18.     return 0;
  19. }
  20.  
  21.