document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Program to delete kth element from the in a Linked List
  2. Linked list is :
  3. 1 --> 3 --> 5 --> 7 --> 7 --> 8 --> 5 --> 3 --> 1
  4. Linked List after deleting 5th element from the end is :
  5. 1 --> 3 --> 5 --> 7 --> 8 --> 5 --> 3 --> 1
');