Hello, why we are using append( ) method as :
s0.append( " I love c++ " );
and not like this :
append( s0, “I love c++” );
And similarly why we use empty as :
s0.empty( );
why we don’t use it as :
empty (s0);
What actually this ’ . ’ is doing in between s0 and method ?
