I'm trying to learn more but I tried to understand the code attached below but I could not. Please explain it to me. Thanks in advance.
#include <stdio.h>
int main (void)
{
int ratingCounters[11], i, response;
for ( i=1; i<=10; ++i)
ratingCounters [i] = 0; // how does this affact the array?
printf("enter the response number ");
for (i=1; i<=20; ++i)
{
scanf("%d", &response);
if (response < 1 || response > 10 )
printf("bad response %i ", response);
else
++ratingCounters[response];// storing responses and the ++ ... how does it work?
}
printf("\n rating number of response \n");
printf("----- ---------------------\n");
for (i=1; i<=10l; ++i)
printf("%4i%14i\n", i, ratingCounters[i]);
return 0;
}
