#include <stdio.h>
/* Lets create structure of the node*/
struct node
{
int data;
struct node *prev;
struct node *next;
}*head; // Creating a global head pointer of struct type
/* Lets create structure of the node*/
struct node
{
int data;
struct node *prev;
struct node *next;
}*head; // Creating a global head pointer of struct type
No comments:
Post a Comment