/* Matthew Page * CSCS 1320 Fall 2014 * * arrayavg.c - takes user input for 4 test scores and * calculates the average but instead of using * 4 integers it uses and integer array. * * */ #include int main() { float avg=0; int max = 4; int score[max], count=0; for (count=0;count