/////////////////////////////////////////////////////////////////////////// // Homework:1 // Exercise:1 // // summary: Your first program, simple output, preview of argc/argv // // Goals: // // 1 - get this program to run (compile, link, and run it. Don't forget // the extra steps needed on the VAX to get command line arguments working) // // 2 - What does this program do? // // 3 - add some useful comments once you figure out what it does (feel // free to add empty lines to break the code up into logical pieces) // /////////////////////////////////////////////////////////////////////////// #include // for i/o library int main(int argc, char *argv[]) //argc somehow contains the number of arguments for main() //argv[0] apparently points to the executable file name { cout << "Hello world:\n"; // prints message to screen then newline cout << "Some more information:";//no newline cout << "this program was called with "< 1) cout << "1st arg is \""<