6_5_void_pointer_arith.c (69B)
1 int test_main(void) { 2 void* p = 0; 3 p = p + 1; 4 return p != 0; 5 }