Relational expressions

What is the value of each of the following relational expressions? (3, 4)

a. p->link->link == current

b. first->link->link->info == 92

Save your time - order a paper!

Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines

Order Paper Now

c. temp->link == 0

d. last->link == nullptr

e. list->link == p

f. p->link->link->link->info == temp->info

What are the effects, if any, of each of the following C++ statements? (3, 4)

a. trail = temp->link;

 trail->link = nullptr;

 delete last; last = trail;

b. temp->link = last;

c. first->info = 58;

d. q = current->link; current->link = temp;

 delete q;

e. q = p->link->link->link;

 q->info = 60;

f. p->link = temp;