Answers for "c++ convert int to cstring"

C++
2

c++ convert int to cstring

#include<isotream>
#include<string>
using namespace std;

string str = to_string(int);
char cstr[size] = "";
strcat_s( cstr, str.c_str());
Posted by: Guest on April-01-2020
0

c++ convert int to cstring

#include<isotream>
#include<string>

string str = to_string(int);
char cstr[size] = "";
strcat_s( cstr, str.c_str());
Posted by: Guest on April-01-2020

Browse Popular Code Answers by Language