6_5_42_ptr_arith_stride.c (97B)
1 int test_main(void) { 2 double a[3] = {0.0, 0.0, 42.0}; 3 double* p = a + 2; 4 return (int)*p; 5 }