Welcome to Westonci.ca, where you can find answers to all your questions from a community of experienced professionals. Explore in-depth answers to your questions from a knowledgeable community of experts across different fields. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

What will the following code display?

1. object* o;
2. object* p = new object();
3. p->SetScore(100);
4. o = p;
5. delete p;
6. cout << o->GetScore();