Answer:
Check the explanation
Step-by-step explanation:
Value of A is sp1->p.
Since A is the part that we are assigning value to sp2->p and to that function two points sp1 and sp2 are passed and we are copying sp1 contents to sp2.
so for sp2->p, sp1->p is the correct assignment.
Value of B is sp1->s.x. Since s is a another structure that is defined inside point so we are accessing through -> operator and x is variable inside s so sp1->s.x is the
correct assignment.
Similarly Value of c is sp1->s,y