#include <iostream>
#include <memory>
int main() {
auto p = std::make_shared<std::string>("Hello");
*p += ", world!";
std::cout << *p << std::endl;
auto q = p;
std::cout << *q << std::endl;
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: