number = static_cast<int>(argv[1]);
Error: Using static_cast to convert from char* to int not allowed.
I've tried finding out why on google and I just can't seem to find it. Also, I don't want to get the ascii value, because argv[1] is a number.
e.g. ./prog 15
cout << number; //want it to print 15.