home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl2vac.zip / STLport-4_5_3.zip / STLport-4.5.3 / test / regression / strass1.cpp < prev    next >
C/C++ Source or Header  |  2000-12-07  |  178b  |  10 lines

  1. #include <string>
  2.  
  3.       int main()
  4.       {
  5.       std::string str1 = "string";
  6.       std::string str2;
  7.       str2.assign(str1.begin(), str1.begin() + 3);
  8.       return 0;
  9.       }
  10.