Hi, need some help here. I am new with C++. For example, i have 2 string named A and B that is input by user. I want to combine those 2 string become 1 which is named C without any space. Can someone help me. Thank you.
1 2 3 4
string A, B, C;
cout << "Please input A and B";
cin >> A;
cin >> B;