How do I convert a char to a C++ string? I can't use an array of characters (a cstring); I need an actual <string> object.<BR><BR>After I make the initial string, I then need to be able to append ...
Though Java already has a character type and char keyword to represent and manipulate characters, the language also requires a Character class for two reasons: Character c1 = new Character ('A'); ...