Sample Question
Question 1. Consider the following doubly linked list.
Figure 1 Insertion in Circular Linked List
The figure 1 demonstrates an insert operation in the circular linked list. The newly created node is
inserted just before the first node (indicated by the start *).
Write a function insert (List *s, int insert) that inserts the given element in the circular linked list.