Skip to content

Instantly share code, notes, and snippets.

@dhrmvk
dhrmvk / DoublyLinkedList.c
Created February 26, 2026 05:04 — 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;
};