home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group15 / glob.c next >
C/C++ Source or Header  |  1997-10-16  |  296b  |  21 lines

  1.  
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <windows.h>
  5.  
  6. int
  7. main (int argc, char* argv[])
  8. {
  9.     int    i;
  10.  
  11.     printf ("Command line (via GetCommandLine) \"%s\"\n",
  12.         GetCommandLine());
  13.  
  14.     for (i = 0; i < argc; i++)
  15.     {
  16.         printf ("Argv[%d] \"%s\"\n", i, argv[i]);
  17.     }
  18.  
  19.     return 0;
  20. }
  21.