I have a char, a plain old character, that I would like to turn into an std::string. std::string(char) doesn\'t exist of course. I c
char
std::string
std::string(char)
To add to the answer, you can simply use initializer list
std::string str = {ch};