aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk5/lab4/pOc.cpp
blob: 919806fc3b23213686b560c68c897f9b0f50f59b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;
}