Clone strings
A simple program that will take an input and define a string. It will then clone it to another string.
#include <iostream>
#include <string>
using namespace std;
int main() {
string toclone, cloned;
cout << "Define the first string and this program will clone it to another string: ";
getline(cin, toclone);
cloned = toclone;
cout << "You entered: " << toclone << endl;
cout << "Now the cloned string is also: " << cloned;
return 0;
}