/* commline8.cpp introduces the predefined parameters argc and argv.
 *
 * Output: The value of argc, followed by each string in argv.
 *******************************************************************/

#include <iostream.h>

int main(int argc, char * argv[])
{
  cout << "\nThere are " << argc
       << " strings on the command line:\n";
  
  for (int i = 0; i < argc; i++)
    cout << '\t' << "argv[" << i << "] contains: "
	 << argv[i] << endl;
}


