6_5_54_sizeof_deref_ptr.c (86B)
1 int test_main(void) { 2 double x = 0.0; 3 double* p = &x; 4 return (int)sizeof(*p); 5 }