Home
Posts filed under linkedlist
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 :)
#include<stdio.h> #include<conio.h> #include<stdlib.h> struct node { int data; struct node *next; }*head; voi...
Read more
Wednesday, September 7, 2016
