CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
using namespace std;
int main() {
string s1 { "Hello World!" };
string s2 = s1.substr( s1.length() / 2 );
s1.erase( s1.length() / 2 );
cout << s1 << endl;
cout << s2 << endl;
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run