Answer:
The answer is "Option d".
Step-by-step explanation:
- In the given C++ language structure code two structure "personalInfo and commonInfo" is defined, inside the personalInfo structure four variable "name, age, height, and weight" is defined.
- Then second, structure "commonInfo" is defined, which contain two variable that is "name and age" this variable datatype is same as the above structure.
- In the next line, both structures two object is created, in which only option d that is "person2 = person1" is correct because these object holds the same value and other options are not correct because they don't hold object values.