6_5_4_01_int_to_ptr_deref.c (108B)
1 int test_main(void) { 2 int x = 3; 3 unsigned long raw = (unsigned long)&x; 4 *(int*)raw = 9; 5 return x; 6 }