*** C language ***
Make a list of all of the different zip codes
that the zombies live at and a count of how many
zombies live at that zip code. The list should be sorted based on
the zip code with the
smallest zip code printed first. Example:
Zip Code # Zombies
31234 2
//variables
int zip[] =
{37643,31234,32785,32643,32785,32643,31234,31234,32643,32643,31234,32785,32785,32643,31234};
char
zombie[]={'N','Y','Y','N','Y','Y','Y','N','Y','Y','N','Y','Y','Y','Y'};
Y = zombie N = Not zombie
int zPatient = 0;
int nonZpatient = 0;
for(int pt = 0;...