219k views
1 vote
Write a C program to compute the average age of nth student

1 Answer

5 votes

Answer:

Following are the code in c language

#include <stdio.h> // header file

int main() // main function

{

int n1,i;

float avg,x,s=0; // variable declaration

printf("\\Enter How many Number terms you want:");

scanf("%d",&n1); // input terms by user

for(i=0;i<n1;++i)

{

scanf("%f",&x); // user input

s= s +x; //calculate sum

}

avg = s/n1;// calculate average of n number

printf("\\The average of n number is:");

printf("%f",avg); // display average

return 0;

}

Output

Enter How many Number terms you want:3

3

4

3

The average of n number is:3.333333

User Blubb
by
6.4k points