12345678910111213141516171819202122
class Test { public: Test(const char* name) : ptr(nullptr) { ptr = name; } ~Test() { printf("%s\n", ptr); system("PAUSE"); } const char* ptr; }; int main() { Test t("Hello"); }