Sunday, February 16, 2020

14. Doubly Linked List :1- Creating a Structure node for doubly Linked List

#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

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 ...