Identify the error in the following example of the use of a displayNodesReverse() member function void displayNodesReverse(){ cout

Skill/Topic: Linked List
A) Syntax of displayNodesReverse() is wrong
B) Node*temp should be NULL
C) Wrong use of paranthesis
D) temp should be equal to temp->previous
Explanation: The displayNodesReverse() member function displays the contents of a linked list in reverse order,beginning with the node at the back of the linked list and continuing until the first node is displayed.So Previous should be used.

Showing Answers 1 - 1 of 1 Answers

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions