Example: convert ascii char value to hexadecimal c++. #include <sstream> std::stringstream sstream; sstream << std::hex << (my_char - 0); std::string result ...
確定! 回上一頁