26. Given a linked list (using the code from the book), which of the following sets of statements would implement a function to return the last item in the list?

a.
NodePtr here;
here=head;
while(here->link != NULL)
{
here = here ->link;
}
return here->data;
b.
NodePtr here;
here=head->link;
while(here != NULL)
{
here = here ->link;
}
return here->data;
c.
NodePtr here;
while(here->link != NULL)
{
here = here ->link;
}
return here->data;
d.
NodePtr here;
here=head;
while(here->link != NULL)
{
here = here ->link;
}


a.
NodePtr here;
here=head;
while(here->link != NULL)
{
here = here ->link;
}
return here->data;

Computer Science & Information Technology

You might also like to view...

Which of the following will allow you to access structure members?

a. the structure access operator b. the dot operator c. the #include directive d. the getmember function e. None of these

Computer Science & Information Technology

To configure a driver for the 1756-ENET or to manually configure the newer modules, select the ____________________ driver in the Configure Drivers window.

What will be an ideal response?

Computer Science & Information Technology

In a chart, you can format the chart wall separately from the chart floor.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Perhaps the strongest advantage of a local area network is its capability of allowing users to share hardware and software resources.?

Answer the following statement true (T) or false (F)

Computer Science & Information Technology