struct yi { char name[10]; int age; char address[20]; }; struct er { struct yi boy[3]; }; int main() { int i; struct er *p; p=(struct er*)malloc(sizeof(struct er));