chrjs 42 Junior Poster in Training

I would recommend that you use an std::string instead of a char*. std::strings are safer than char*s and don't require functions like strcpy. So for example:

std::string highest_str;
//you don't need the "std::" if you have "using namespace std;" in your code

//...some code here...

highest_str = "January";

//...some code here...
WaltP commented: Doesn't requite changing types. Char* works just fine. -3