this program will read in a group of test scores (positive integers from 1 to 100) from the keyboard and then calculate and output the average score as well as the highest and lowest score. there will be a maximum of 100 scores.

Respuesta :

You will discover how to use arrays to determine the average of the user's n inputted elements in this example.

You should be familiar with the following C programming concepts in order to comprehend this example:

#include <stdio.h>

int main() {

   int n, i;

   float num[100], sum = 0.0, avg;

   printf("Enter the numbers of elements: ");

   scanf("%d", &n);

   while (n > 100 || n < 1) {

       printf("Error! number should in range of (1 to 100).\n");

       printf("Enter the number again: ");

       scanf("%d", &n);

   }

   for (i = 0; i < n; ++i) {

       printf("%d. Enter number: ", i + 1);

       scanf("%f", &num[i]);

       sum += num[i];

   }

   avg = sum / n;

   printf("Average = %.2f", avg);

   return 0;

}

Learn more about programming here-

https://brainly.com/question/11023419

#SPJ4