Skip to content

Instantly share code, notes, and snippets.

View wei2912's full-sized avatar

Ng Wei En wei2912

View GitHub Profile
@Subsentient
Subsentient / pointer.c
Created February 3, 2013 09:29
Pointer basics in C.
#include <stdio.h>
/*
Pointers to pointers' pointers. GET YOUR HANDS OFF MY POINTER!!!
A crappy, cheap code snippet by Subsentient.
*/
void main()
{
int num = 7;