mirror of
https://github.com/ENSL/NS.git
synced 2024-12-11 21:31:04 +00:00
10 lines
187 B
C++
10 lines
187 B
C++
|
#include <string>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::string str1 = "string";
|
||
|
std::string str2;
|
||
|
str2.assign(str1.begin(), str1.begin() + 3);
|
||
|
return 0;
|
||
|
}
|