// PROGRAM ID: myecho.cpp / My version of the Unix "echo" command // REMARKS: Illustrates use of command-line arguments #include using namespace std; int main( int argc, char * argv[] ) // IN IN { for (int a = 1; a < argc; ++a) { cout << argv[a] << " "; } cout << endl; return 0; }