string str = "China";
char cn[100];
strncpy(cn, str.c_str(), sizeof(cn)-1);
cn[sizeof(cn)-1] = '\0';
#include
#include
#include
using namespace std;
int main()
{
string s("test string");
char str[100];
strcpy(str, s.c_str());
cout << str << endl;
return 0;
}