Question: Linked List C++ code: Look at the orderhw.c code and draw what happens to the linked list containing the dummy and nodes for 1 through
Linked List C++

code:

Look at the orderhw.c code and draw what happens to the linked list containing the dummy and nodes for 1 through 5 as it is being printed out. Is->Dummy->1->2->3-54->SNULL /**** ******FUNCTION PRNTLIST*** ***/ svoid prntlist(LISTREC *liststart) /*argument is a pointer to type LISTREC*/ { /*begin function*/ while (liststart != NULL) { /*begin while*/ printf("%s ", liststart->info.name); liststart = liststart->link; } /*end while*/ } /* end function prntlist*/
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
