Given the following C struct definition:
struct node
{ int value;
struct node *next;
};
Write the full function that will search the list to find thenode that contains a given int value and return a pointer to it.Use the provided struct node. If you do not specify a parameterrepresenting your list, we will assume that you are using a globalpointer to your list.
Expert Answer
An answer will be send to you shortly. . . . .