diff options
Diffstat (limited to 'OLD/ee1301/wk5/lab4/pOc.cpp')
-rw-r--r-- | OLD/ee1301/wk5/lab4/pOc.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OLD/ee1301/wk5/lab4/pOc.cpp b/OLD/ee1301/wk5/lab4/pOc.cpp new file mode 100644 index 0000000..919806f --- /dev/null +++ b/OLD/ee1301/wk5/lab4/pOc.cpp @@ -0,0 +1,12 @@ +#include <iostream>
+using namespace std;
+
+int main(int argc, char* argv[]) {
+
+ int i;
+ cout << "You typed the following on the command line:" << endl;
+ for (i = 0; i < argc ; i++) {
+ cout << argv[i] << ", ";
+ }
+ cout << endl;
+}
|