Simple question (in C++):
How do I convert a single character into a string. So for example, I have string str = "abc";
And I want to extract the first letter, but I want it to be a string as opposed to a character.
I tried
string firstLetter = str[0] + ""; and
string firstLetter = & str[0]; Neither works. Ideas?