#include #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 *zooptr[N]; //This will initialize the zoo array we created for(i=0;iname = nameArr[i]; zooptr[i]->location = locationArr[i]; } //This will print the entire array printf("/********** Welcome to the Zoo **********\\ \n"); for(i=0;iname, zooptr[i]->location); } printf("\\******************************************/\n"); }