Question: write a search function that takes a string as its argument. It will return the address of the node holding the string, or Null if
write a search function that takes a string as its argument. It will return the address of the node holding the string, or Null if the pointer runs off the end of the list. this part of the code has to include:
if(cursor->data == target) return cursor;
Then write a move_front_to_back function. use an extra pointer to hold the first node in the list, then move the head to the second node of the list, and then with still another pointer find the last node in the list and hook the node that used to be at the front to the back.
Main:

Header:

#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
