Showing posts with label linkedlist. Show all posts
Showing posts with label linkedlist. Show all posts
Thursday, September 8, 2016

PROGRAM TO DELETE A NODE FROM A LINKED LIST USING LOCATION :)

thumbnail
#include<stdio.h> #include<conio.h> #include<stdlib.h> struct node {  int data;  struct node *next; }*head; voi...
Wednesday, September 7, 2016

thumbnail
PROGRAM TO DELETE A NODE FROM A LINKED LIST: #include<stdio.h> #include<conio.h> #include<stdlib.h> struct node {  ...
Saturday, September 3, 2016

thumbnail
PROGRAM TO INSERT NODE AT ANY POSITION AND AT END IN A LINKED LIST: #include<stdio.h> #include<conio.h> #include<stdlib.h...