Program in C to sum of five elements of an array

Program in C to sum of five elements of an array

#include<stdio.h>
#include<conio.h>

void main ()
{
          int no[5],i,sum;
          clrscr ();
          for (i=0;i<=4;i++)
          {
                   printf ("Enter Element: ");
                   scanf ("%d",&no[i]);
          }
          sum=no[0]+no[1]+no[2]+no[3]+no[4];
          printf ("\nSum of five Elements: %d",sum);
          getch ();
}


Post a Comment