Ahh.. who gave the code-monkey a wrench?
void convertHex() { string exchangeHex = "0123"; int exchange; //exchangeHex std::stringstream ss; ss << std::hex << exchangeHex; ss >> exchange; cout << exchange << endl; }
No comments:
Post a Comment