Skip to content

Instantly share code, notes, and snippets.

View Nick0703's full-sized avatar

Loki C Nick0703

  • Brampton, ON, Canada
View GitHub Profile
@Nick0703
Nick0703 / maze.c
Created January 19, 2014 22:28 — forked from kalmi/maze.c
#include <stdio.h>
#include <ncurses.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
struct coordinate
{
int x;
int y;