struct person{
char *name;
int age;
float high;
};
int main()
{
struct person{
char *name;
int age;
};
struct person f={"father",51};
printf("father=%s,age=%d\n",f.name,f.age);
struct person m={"mother",50,160.0f};
printf("mather=%s,age=%d,high=%.1f\n",m.name,m.age,m.high);