#include #include int main() { std::string sentence{"She"}; sentence.append(" is playing"); sentence += " the piano."; } Output: She is playing the piano.