Skip to content

Instantly share code, notes, and snippets.

View gozeloglu's full-sized avatar
🎯
Focusing

Gökhan Özeloğlu gozeloglu

🎯
Focusing
View GitHub Profile
@gozeloglu
gozeloglu / stack.c
Created October 13, 2018 21:05 — forked from ArnonEilat/stack.c
Very simple stack implementation in C with usage example.
#include <stdio.h>
#include <stdlib.h>
#define FALSE 0
#define TRUE 1
typedef struct {
int info;
} DATA;