Write a C program for An e-commerce company took the result for its one of the products customer reviews. The review is
based on the scale 1 to 5. There are 20 customer who reviews and the values are as follows,
{1,2,3,4,2,3,4,5,5,4,3,2,1,1,2,3,4,5,2,2}
Your task is to find
1) The Frequency of each review (1-5). Please note that the customer is only allowed to provide
integer reviews.
2) You also need to calculate the average review ratings.
Check out the attached image for sample output;
Extracted text: Analyzing Customers Response An e-commerce company took the result for its one of the products customer reviews. The review is based on the scale 1 to 5. There are 20 customer who reviews and the values are as follows, {1,2,3,4,2,3,4,5,5,4,3,2,1,1,2,3,4,5,2,2} Your task is to find 1) The Frequency of each review (1-5). Please note that the customer is only allowed to provide integer reviews. 2) You also need to calculate the average review ratings. Sample Output: Review Scale Frequency 1 6. 4 4 4 Average Rating for this product is: 2.15