Skip to content

Instantly share code, notes, and snippets.

View jornissimo's full-sized avatar
💭
Hot little firecracker

jorn jornissimo

💭
Hot little firecracker
View GitHub Profile
@mohd-akram
mohd-akram / matrix.c
Created January 27, 2014 01:23
Matrix digital rain in C.
#include <stdlib.h>
#include <time.h>
#include <windows.h>
#define WIDTH 80
#define HEIGHT 40
#define idx(x, y) ((x)+WIDTH*(y))