Question: Consider the following code: // Linked Lists: AVERAGE struct ListNode { int data; struct ListNode *next; }; ListNode *head; Assume that the linked list has
Consider the following code: // Linked Lists: AVERAGE
struct ListNode { int data; struct ListNode *next; };
ListNode *head;
Assume that the linked list has been created and head points to the first node. You may also assume that the list is not empty. Write a function named calculateAverage that receives the head of the list and returns the average of the numbers in the list.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
