#include #include #include #define SIZE 5 #define BUFLEN 64 #define NUM_ANIMALS 5; char * get_name(); char * animals[] = {"horse","dog","cat","ferret","cow"}; void print_zoo(char ** zoo, int len); int main() { char * name_arr[SIZE]; int count; printf("How many animals will you create? (up to 5)"); scanf("%d",&count); if (count>5) count=5; /* error checking */ int i; for (i=0;i