/* Lets create structure of the node*/
struct node
{
int data;
struct node *link;
}*head; // Creating a global head pointer of struct type
/* lets declare a function to create nodes*/
struct node
{
int data;
struct node *link;
}*head; // Creating a global head pointer of struct type
/* lets declare a function to create nodes*/
No comments:
Post a Comment