Skip to content

Instantly share code, notes, and snippets.

View akay25's full-sized avatar
🎯
Focusing

Ajay M akay25

🎯
Focusing
View GitHub Profile
@akay25
akay25 / DoublyLinkedList.c
Created November 24, 2016 15:34 — 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;
};