Strings
Strings
int main() {
string s = "abc";
//getline(cin, s);
cout << s << endl;
s = "defdef";
cout << s[0] << endl;
s[0] = 'a';
string s1;
s1 = "def";
string s2 = s + s1;
cout << s2 << endl;
s += s1;