/* * This C++ program displays the arguments on the command line. * The output appears on "standard error", not "standard output". * Save this program as: argv.c++ * Compile this program using: g++ -o argv argv.c++ * Run the program using: ./argv "one two" three * -Ian! D. Allen - idallen@idallen.ca */ #include // cin, cout, cerr using namespace std; int main(int argc, char **argv){ int i; for( i=0; i