/*
when passing "e" the if statement does not work properly on my compiler.
*/
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << argv[1] << endl;
if(argv[1] == "e"){
cout << "I made it";
}
cout << "opps missed it";
return 0;
}