cafeteria rating

C Program - Cafeteria Rating

Fourty students were asked to rate the quality of food in the student cafeteria on a scale of 1 to 10(1 means awful and 10 means excellent) Place the 40 responses in an integer array and summarise and display the results of the poll #include /* Standard C Library*/ #define students 40 /* Constant students*/ #define max_rating 10 /* Constant max_rating*/ int cafeteria_rating_array[students][1]; /*