Skip to content

Instantly share code, notes, and snippets.

View SanketDG's full-sized avatar
🎯
Focusing

Sanket Dasgupta SanketDG

🎯
Focusing
View GitHub Profile
@SanketDG
SanketDG / functions.c
Created December 20, 2015 15:04 — forked from eatonphil/functions.c
Introduction to "Fun" C (using GCC)
/**
* This are a collection of examples for C 201.
* These combine concepts you may or may not be
* familiar with and are especially useful for
* students new to C. There is a lot of really
* cool stuff you can do in C without any cool
* languages.
*
* This is file in particular is an introduction
* to fun function usage in C.
@SanketDG
SanketDG / angle-between-points.js
Created April 23, 2017 08:07 — forked from conorbuck/angle-between-points.js
JavaScript: Find the angle between two points
var p1 = {
x: 20,
y: 20
};
var p2 = {
x: 40,
y: 40
};