home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2000 December / VPR0012A.BIN / OLS / CMKT111 / cmkt111.lzh / Cmachine / sample / mainarg.c < prev    next >
C/C++ Source or Header  |  2000-09-08  |  242b  |  20 lines

  1.  
  2. /*
  3.  * C machine サンプル ~ メイン関数の引数
  4.  *
  5.  * 「メイン関数の引数」
  6.  *
  7.  */
  8.  
  9. #include <stdio.h>
  10.  
  11. int main(int argc, char *argv[])
  12. {
  13.     int i;
  14.  
  15.     for(i=0; i<argc; i++)
  16.         printf("argv[%d] : %s\n", i, argv[i]);
  17.  
  18.     return 0;
  19. }
  20.