aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk5/lab4/pOc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk5/lab4/pOc.cpp')
-rw-r--r--ee1301/wk5/lab4/pOc.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/ee1301/wk5/lab4/pOc.cpp b/ee1301/wk5/lab4/pOc.cpp
deleted file mode 100644
index 919806f..0000000
--- a/ee1301/wk5/lab4/pOc.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#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;
-}