12345678
string name; /*name.length() OR name.front() name.back() */
12
string name = "John"; cout << name[0] // indexes start with 0 don't forget