Question: C program (please read the requirement carfully) (15 pts) Write a C function called findMax() that searches two linked lists for the maximum integer. The
C program (please read the requirement carfully) (15 pts) Write a C function called findMax() that searches two linked lists for the maximum integer. The function returns a pointer to the Node that contains the maximum integer. Note: the lists may be empty. Assume that struct node is defined as follows: typedef struct node int data struct node pNext; Node Use the following function header: Node * findMax (Node *pList1, Node *pList2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
