Size of the string

Is the size of the string fixed

string s = {“shiva”};

the size of the string is 5 so is it fixed or i can add character to the string

@shiva57reddy Yes you can add more characters/string using function s.append(str) or s.push_back(str)