home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / MAIN.C < prev    next >
Encoding:
Text File  |  1985-02-17  |  477 b   |  23 lines

  1. /*
  2. main.c -- prints argument count, arguments from RUN line
  3. */
  4.  
  5. main(argc,argv)
  6. int argc;
  7. char **argv;
  8. {
  9.     int i;
  10.  
  11.     printf("argc = %d\n",argc);
  12.     for (i = 0; i < argc; i++)
  13.         printf("argv[%d]: |%s|\n",i,argv[i]);
  14.  
  15. puts("Base arg is the name which called RUN/C.");
  16. /* illustrates args to main() */
  17. /* place several words after RUN before hitting <enter> */
  18. /* Result: each argument passed to main is counted and */
  19. /* listed within vertical brackets */
  20.  
  21. }
  22.  
  23.