Question: Given struct definition and code below, which statement shows owner of iPhone. / / A struct to keep items struct product { string owner; product

Given struct definition and code below, which statement shows owner of iPhone.
// A struct to keep items
struct product
{
string owner;
product *next;
product(string x, product* p){// constructor
owner = x; next = p;
}
};
product* iPad;
product iPhone("Us", NULL);
iPad = new product("They", &iPhone);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!