Thu Nov 13, 2008 7:19 pm
#include <iostream>
using std::cout;
using std::endl;
#include <string>
using std::string;
int main()
{
string string1( "cat" );
string string3;
string3.assign( string1 );
cout << "string1: " << string1
<< "\nstring3: " << string3 << "\n\n";
string3 += "pet";
string3.append( string1, 1, string1.length() - 1 );
cout << "string1: " << string1
<< "\nstring3: " << string3 << "\n\n";
return 0;
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.