Answers for "convert a int to char c++"

C++
3

C++ int to char*

std::string s = std::to_string(number);
char const *pchar = s.c_str();  //use char const* as target type
Posted by: Guest on April-22-2020

Browse Popular Code Answers by Language