Linked List program using C language Operations :- Create list, insertion (beg, mid, end), deletion (beg, mid, end) #include<stdio.h> #include<conio.h> void inst_beg(); void inst_mid(); void inst_end(); void del_beg(); void del_mid(); void del_end(); void traverse(); int count(); struct node { int num; struct node *next; }*start=NULL; typedef struct node node; typedef struct node* nptr; void main() { char choice; while(1) { clrscr(); printf("-------LINKED LIST-------\n\n"); printf(" 1.Insertion at begining\n"); printf(" 2.Insertion at mid\n"); printf(" 3.Insertion at end\n"); printf(" 4.Deletion from begining\n"); printf(" 5.Deletion from mid\n"); printf(" 6.Deletion from end\n"); printf(" 7.Traverse\n"); printf(" 8....
hookup ur code with us