Link to Turbo C: HERE
/* programme of single Double link-list*/
#include<stdio.h>
#include<conio.h>
#include<stdlib.h> /* for malloc function */
struct student /*structure name defined */
{
int rno;
...
C programme for Double Link-list or Doubly by using structure
