Q.1 : Let x and y be strings represented as single linked lists. Write a C function to determine first character of x that does not occur in stringy.
Q.2 : Write a C function for reversing circular single linked lists
Q.3 : Let A and B be two structures of type linked list. Write a function for creating new linked list C that contains elements alternately from A and B beginning with first element of A. If you run out of the elements in one of the lists then append the remaining elements of other lists to C.
Q.4 : Write a C function for concatenating two circular single linked lists.