i am now having:
string* book=new string[100]; // string array
in Windows form application (managed code), i am unable to user it !
how can change it to char type with the same effect and use it in managed code?
=============== ===
char * cstr;
string str ("Please split this phrase into tokens");
cstr = new char [str.size()+1];
strcpy (cstr, str.c_str());
string* book=new string[100]; // string array
in Windows form application (managed code), i am unable to user it !
how can change it to char type with the same effect and use it in managed code?
=============== ===
char * cstr;
string str ("Please split this phrase into tokens");
cstr = new char [str.size()+1];
strcpy (cstr, str.c_str());
Comment