Skip to content

Instantly share code, notes, and snippets.

@ajeddeloh
ajeddeloh / Weirdness
Last active August 29, 2015 14:07
Weird C stuff
#include <stdio.h>
static const int a;
int main(void) {
int *b = (int *) &a;
printf("%p\n%p\n", b, &a);
*b = 6;
printf("%d\n%d\n", *b, a);
}