Problem statement : Implement the following void split_odd_and_even(LL_LinkedList_t * pList, //![IN] : This is the input Linked List given to you. LL_Node_t ** pOddList, //![OUT]: This is the Head node of the Odd List to be returned LL_Node_t ** pEvenList ); //![OUT]: This is the Head node of the Even List to be returned NoteRead more