Program: Creation of Doubly Linked List
OUTPUT
Input the values of the element -1111 to come out :
1
Input the values of the element -1111 to come out :
2
Input the values of the element -1111 to come out :
3
Input the values of the element -1111 to come out :
-1111
Created doubly linked list is as follows traversing the list by using right pointer
1 = 2 = 3 =
traversing the list using left pointer
3 = 2 = 1 =