C with classes
This commit is contained in:
13
ObjectOrientedProgramming/vstest/main.cpp
Normal file
13
ObjectOrientedProgramming/vstest/main.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user