1 typedef struct c_type_1 2 { 3 int j; 4 } c_type_1_t; 5 void sub0(c_type_1_t *c_type, int expected_j); main(int argc,char ** argv)6 int main(int argc, char **argv) 7 { 8 c_type_1_t c_type; 9 c_type.j = 11; 10 sub0(&c_type, c_type.j); 11 return 0; 12 } 13