Skip to content

Instantly share code, notes, and snippets.

@catull
catull / 2048.c
Last active August 29, 2015 13:58 — forked from justecorruptio/2048.c
// Original file by Jay Chan:
// https://gist.github.com/justecorruptio/9967738
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#define SIDE 4
#define GRID (SIDE * SIDE)