joeGrammar
Programmer
Just say I have some thing like this
const char* temp = "test";
string value;
What is the proper way to assign the const char* to the string.
ie
value=temp will not work, what will?
const char* temp = "test";
string value;
What is the proper way to assign the const char* to the string.
ie
value=temp will not work, what will?