Question: Consider the following code: // Linked Lists: SUM of the first three numbers struct ListNode { int data; struct ListNode *next; }; Assume that a
Consider the following code: // Linked Lists: SUM of the first three numbers
struct ListNode { int data; struct ListNode *next; };
Assume that a linked list has been created and head points to the first node. You may also assume that the list has at least 3 nodes and that sum is an int variable. Write a statement that assigns the sum of the first three numbers in the list to sum.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
