Delete a node from the middle of a circular linked list
Expected Output :
Input the number of nodes : 3
Input data for node 1 : 2
Input data for node 2 : 5
Input data for node 3 : 8
Data entered in the list are :
Data 1 = 2
Data 2 = 5
Data 3 = 8
Input the position to delete the node : 3
The deleted node is : 8
After deletion the new list is :
Data 1 = 2
Data 2 = 5
=================================================
• C Programming - Linked List
Website : http://www.jlabstech.com
Like us on Facebook : / jlabstechnology
Follow on Twitter : / _jlabs_