Skip to content

Instantly share code, notes, and snippets.

View Navalag's full-sized avatar

Andrew Galavan Navalag

  • PHP / Laravel developer at esto
  • Kyiv, Ukraine
View GitHub Profile
@Navalag
Navalag / README.md
Created April 11, 2018 19:03 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@Navalag
Navalag / DoublyLinkedList.c
Created December 12, 2017 15:29 — 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;
};