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