Thu Nov 13, 2008 7:25 pm
#include <iostream>
using std::cout;
using std::endl;
#include <string>
using std::string;
int main()
{
string s1( "AA1234567890asdfasdf" );
string s2( " AAB" );
string s3;
// test string member function substr
cout << "The substring of s1 starting at location 0 for\n"
<< "14 characters, s1.substr(0, 14), is:\n"
<< s1.substr( 0, 14 ) << "\n\n";
return 0;
}
/*
The substring of s1 starting at location 0 for
14 characters, s1.substr(0, 14), is:
AA1234567890as
*/
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.