Mode:
Duration:
1
2
3
4
5
6
7
8
9
#include <iostream>
#include <memory>
int main() {
auto sp1 = std::make_shared<int>(10);
auto sp2 = sp1;
std::cout << *sp1 << ',' << *sp2 << std::endl;
return 0;
}Coding works best on desktop or with an external keyboard.