In C.5. (25 pts) Code a C recursive function for a singly linked list Show the function prnOddBackwards which is passed a pointer to the first node of a linked list. The function prnOddBackwards should print the odd values in a reverse way. That means that they will be printed in the opposite order than the one they are stored in the linked list. Original list Assume these typedefs typedef struct Node pHead int iInfo; struct
OR
OR