Alright, so I just simply need help with this. I cannot get "mystring" to equal "correct". I would really appreciate some help in figuring this out, I am making a text adventure game and would love some tips.
Yes, because you've declared sentence and mystring to be char arrays, so you can't just assign like that from a std::string to a char array. Why are you mixing char arrays and std::strings in the same program?