c int to const char* 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: how to convert int in to const char in c
int size;
char dispsize[100];
sprintf(dispsize,"%d",size);