1 2 3 4 5 6 7 8 9 10
// succeeds int main() { int x; int *p; x = 0; p = &x; if(*p) return 1; return 0; }