home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX0410.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-27  |  219 b   |  10 lines

  1. // \EXAMPLES\ex0410.cpp
  2. #include <iostream.h>
  3.  
  4. void main(int argc, char* argv[]) {
  5.    for ( int i = 0; i < argc; i++ )
  6.       cout << "Here is argument " << i << ": "
  7.            << argv[i]
  8.            << endl;
  9. }
  10.