Question: Linked Lists in C. Based off the following code, what would go in the following highlighted question marks to create the function searchLL Will thumbs

Linked Lists in C. Based off the following code, what would go in the following highlighted question marks to create the function "searchLL"
Will thumbs up!
Exercise #1: searchLL also returning preceding node NodeLL *searchLL (LinkedList list, key match, NodeLL **ppPrecedes) NodeLL *p; // NULL used when the list is empty // or when we need to insert at the beginning *ppPrecedes = NULL; // Traverse through the list looking for where the key belongs or // the end of the list. for (p = ??) // Not found return NULL return NULL
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
