#include #include using namespace std;int main(){ string s1( "cat" ), s5; s5 = "this is a test"; s5.append( s1, 4, s1.size() ); return 0;}