Tuesday, January 28, 2020

1.Creating structure of the node

/* 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*/

No comments:

Post a Comment

9_Regular Expressions

Regular expressions- Sometimes in HTML, the developer defines more than one class name ( that’s class input has more than one name Here ...