1 2 3 4 5 6 7 8 9 10 11 12 13 14
int main() { int x; void *foo; void **bar; x = 0; foo = (void*)&x; bar = &foo; return **(int**)bar; }