I’m programming a program in C++ (typical game) in which you need to guess a letter and it will check if it is present in a string.
For example
Secret String: I like to program.
Guess1: ‘a’
Display: . …. .. …..a…
Etc.
But i don’t know how to see if a character is in this secret string.
I’m using std::string (obligatory)
Any help is appreciated!
Begin by learning searching in a documentation like : http://www.cplusplus.com/reference/string/string/ . (Hint : you want to “find” something … )