Question: 1. Write a C++ code using a while statement to compute the average of all alternative nodes (1st, 3rd, 5th ..) in the given linked

1. Write a C++ code using a while statement to compute the average of all alternative nodes (1st, 3rd, 5th ..) in the given linked list where the first node is NOTE: Each node has data member that stores the data and the next member that stores the address of the next node. Use the following declaration: struct Node int data; Node* next; b: int total 0; double average; first
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
