#include int main(int argc, char *argv[]) { int i; cout << "\nThe number of items on the command line is " << argc << '\n' << endl; for(i = 0; i < argc; i++) { cout << "The address stored in argv[" << i <<"] is " << (void *)argv[i] << endl; cout << "The character pointed to is " << *argv[i] << endl; } return 0; }