13 lines
294 B
C++
13 lines
294 B
C++
#include <iostream>
|
|
#include <cstring>
|
|
using namespace std;
|
|
int main(int argc, char* argv[]){
|
|
for(int i = 1;i < argc; i++){
|
|
if(strcmp(argv[i],"-t") == 0){
|
|
cout << "You have typed -t" << endl;
|
|
}
|
|
}
|
|
int a;
|
|
cout << "Normal Usage" << endl;
|
|
return 0;
|
|
} |