1.

Consider the following declaration :struct addr {char city[10];char street[30];int pin;};struct {char name[30];Int gender;struct addr locate ;} person, *kd = &person ; Then *(kd-> name +2) can be used instead of

A. person.name +2
B. kd-> (name +2)
C. *((*kd).name + 2)
D. either (a) or (b), but not (c)
Answer» D. either (a) or (b), but not (c)


Discussion

No Comment Found