Knowledge Share
Linux Internals Networking C Programming Technical Posts
Wednesday, 16 January 2019
Essential Shell Commands
›
Sunday, 9 April 2017
How to increase Virtual Box Hard Disk Size
›
Here is what I've fixed the issue. Initially I created Virtual Box of 15GB of space. When I run into out-of-space issue. I did...
Tuesday, 14 June 2016
Reverse Linked List
›
#include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; void AppendToL...
Swap linked list node without swapping data
›
swapnode.c #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; vo...
Wednesday, 8 June 2016
Linked List FIFO
›
FIFO List #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; vo...
Find the middle node in the linked list
›
#include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; void A...
Find loop in the list and remove it
›
Following program to find the loop in the list and correct the loop - Algorithm : loop through the list and return any node from the li...
›
Home
View web version