#include #include using namespace std; int main(void) { char c[] = "c"; char x[1024]; string s("s"); strcpy(x, s.c_str()); strcat(x, c); cout << x << endl; }