I want to control whether my ostream
outputting of char
s and unsigned char
's via <<
writes them as characters or integers. I can't find such an option in the standard library. For now I have reverted to using multiple overloads on a set of alternative print functions
ostream& show(ostream& os, char s) { return os << static_cast<int>(s); }
ostream& show(ostream& os, unsigned char s) { return os << static_cast<int>(s); }
Is there a better way?
I have a suggestion based on the technique used in how do I print an unsigned char as hex in c++ using ostream?.