convert int in char c++ code example
Example 1: C++ int to char*
std::string s = std::to_string(number);
char const *pchar = s.c_str(); //use char const* as target type
Example 2: convert char to int c++
int x = character - '0'
std::string s = std::to_string(number);
char const *pchar = s.c_str(); //use char const* as target type
int x = character - '0'