#include #define N 5 // We are creating this animal structure typedef struct animal { //animal descriptors char *name; //where do they live char *location; } Animal; main() { //iterator int i = 0; //String arrays for filling up struct values char *nameArr[N] = {"Seal", "Lion","Panda", "Horse", "Dragon"}; char *locationArr[N] = {"North America", "Africa", "Asia", "Europe", "Camelot"}; Animal zoo[N]; //This will initialize the zoo array we created for(i=0;i