Skip to content

Instantly share code, notes, and snippets.

View IAMNITESHPANDIT's full-sized avatar
🖥️
</>

NITESH KUMAR PANDEY IAMNITESHPANDIT

🖥️
</>
View GitHub Profile
@IAMNITESHPANDIT
IAMNITESHPANDIT / DoublyLinkedList.c
Created August 26, 2020 14:25 — forked from mycodeschool/DoublyLinkedList.c
Doubly Linked List implementation in C
/* Doubly Linked List implementation */
#include<stdio.h>
#include<stdlib.h>
struct Node {
int data;
struct Node* next;
struct Node* prev;
};