Skip to content

Instantly share code, notes, and snippets.

View OffS3c's full-sized avatar
🏠
Working from home

OffS3c OffS3c

🏠
Working from home
View GitHub Profile
@OffS3c
OffS3c / MyArray.c
Created March 9, 2018 22:26
Basic Example Code for C Beginners - Introduces to some concepts which most people don't use as Beginners :P
// Was created/modified for Umair. Later made public for reference. Corrections are welcome.
#include <stdio.h>
#include <unistd.h>
#include <inttypes.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
#define REPEAT