Write a program to find the sum and average of n elements given by the user

Source Code

#include<stdio.h>
#include<conio.h>
int main (int argc, char *argv[])
{
  clrscr();
  int i=0,r=0,n=0;
  float s,avg;
  printf("\n Enter the range:");
  scanf("%d",&r);
  for(i=0;i<r;i++)
  {
      printf("\n Enter element %d :",(i+1));
      scanf("%d",&n);
      s+=n;
  }
  avg=s/r;
  printf("\n The sum and average of %d numbers are %f and %f",r,s,avg);
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code