结构体数组是结构体的一种延伸。
#include<stdio.h>
struct dog
{
char name [20];
char color[15];
int weight;
int age;
};
struct dog st[2];
void main()
{
int i,j;
for(i=0;i<2;i++){
scanf("%s %s %d %d",&st[i].name,&st[i].color,&st[i].weight,&st[i].age);
};
for(j=0;j<2;j++){
printf("name:%s color:%s weight:%d age:%d\n",st[j].name,st[j].color,st[j].weight,st[j].age);
};
}