How can I transfer uint64_t value to std::string? I need to construct the std::string containing this value For example something like this:
void genString(uint6
string genString(uint64_t val) { char temp[21]; sprintf(temp, "%z", val); return temp; }