What statement changes currentNode so that it refers to the-03591
What statement changes currentNode so that it refers to the next node?
This multiple choice question (MCQ) is related to the book/course vu cs301 Data Structures. It can also be found in vu cs301 Mid Term - Quiz No.8.
What statement changes currentNode so that it refers to the next node?
currentNode += nextNode;
currentNode = nextNode;
currentNode = currentNode->nextNode;
currentNode ++;